/* =========================================================
   After Hours — base site style
   Shared between ah.blues.ru and afterhours.tv
   ========================================================= */

:root {
  --bg-main: #0d0d0d;
  --bg-panel: rgba(0,0,0,0.35);
  --bg-panel-soft: rgba(0,0,0,0.25);

  --border-soft: rgba(255,255,255,0.10);
  --border-btn: rgba(255,255,255,0.16);

  --text-main: #eee;
  --text-dim: rgba(255,255,255,0.75);

  --accent: #9ad1ff;

  --radius-main: 16px;
  --radius-card: 14px;
  --radius-btn: 12px;
}

/* Base -------------------------------------------------- */

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(
      ellipse at top,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.03) 35%,
      transparent 65%
    ),
    linear-gradient(var(--bg-main), #000);
  color: var(--text-main);
}

/* Layout ------------------------------------------------ */

.wrap {
  max-width: 960px;
  margin: 48px auto;
  padding: 24px 16px;
  background: var(--bg-panel);
  border-radius: var(--radius-main);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* Typography ------------------------------------------- */

h1 {
  margin: 0 0 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

h2 {
  margin: 0 0 12px;
  font-weight: 500;
}

.sub {
  margin: 0 0 18px;
  opacity: 0.85;
  line-height: 1.45;
}

.small {
  font-size: 14px;
  color: var(--text-dim);
}

/* Cards ------------------------------------------------ */

.card {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  opacity: 0.7;
  margin: 0 0 10px;
}

/* Buttons & links -------------------------------------- */

button,
.btn {
  appearance: none;
  border: 1px solid var(--border-btn);
  background: rgba(255,255,255,0.06);
  color: var(--text-main);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: underline;
}

/* Media ------------------------------------------------ */

.photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel-soft);
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text blocks ------------------------------------------ */

pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  line-height: 1.5;
}

