/* Iris Casino — informational landing, mobile-first */

:root {
  --bg-deep: #0f0a14;
  --bg-card: rgba(28, 18, 38, 0.82);
  --bg-card-solid: #1c1226;
  --accent-hot: #fe5b6e;
  --accent-deep: #d21a3b;
  --accent-violet: #8b5cf6;
  --accent-cyan: #22d3ee;
  --accent-gold: #fbbf24;
  --text: #f4eef8;
  --text-muted: #c4b8d4;
  --border: rgba(254, 91, 110, 0.25);
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 920px;
  --nav-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(139, 92, 246, 0.35), transparent 50%),
    radial-gradient(ellipse 100% 60% at 100% 20%, rgba(254, 91, 110, 0.2), transparent 45%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(34, 211, 238, 0.12), transparent 50%);
  background-attachment: fixed;
}

a {
  color: var(--accent-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 8px 16px;
  background: var(--accent-deep);
  color: #fff;
  border-radius: 8px;
  z-index: 200;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(15, 10, 20, 0.96) 0%, rgba(15, 10, 20, 0.88) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: var(--nav-h);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .header-cta {
    margin-left: auto;
  }

  /* Слот не занимает место в ряду, но даёт место fixed-панели с полной шириной */
  .header-nav-slot {
    flex: 0 0 0;
    width: 0;
    height: 0;
    overflow: visible;
    align-self: center;
  }
}

@media (min-width: 900px) {
  .brand {
    order: 1;
  }

  .header-nav-slot {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header-cta {
    order: 3;
    margin-left: 0;
  }

  .header-inner {
    gap: 16px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

@media (min-width: 480px) {
  .brand img {
    height: 44px;
  }
}

.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 160px;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 10, 20, 0.98);
  border-bottom: 1px solid var(--border);
  transition: max-height 0.35s ease;
}

.site-nav.is-open {
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

@media (min-width: 900px) {
  .site-nav {
    position: static;
    max-height: none !important;
    overflow: visible;
    background: transparent;
    border: none;
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 900px) {
  .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    gap: 4px 8px;
    max-width: 720px;
  }

  .site-nav-play-item {
    display: none;
  }
}

.site-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--bg-card);
  color: var(--text);
}

.site-nav a.btn-play {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(210, 26, 59, 0.35);
  margin: 0;
}

.site-nav a.btn-play:hover,
.site-nav a.btn-play:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #ff6f82, #e01f47);
  box-shadow: 0 6px 22px rgba(210, 26, 59, 0.48);
}

@media (max-width: 899px) {
  .site-nav a.btn-play {
    margin: 6px 0 10px;
  }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.hero {
  text-align: center;
  padding: 32px 20px 40px;
  margin: 0 -16px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(210, 26, 59, 0.2) 50%, rgba(34, 211, 238, 0.15) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: block;
  width: min(280px, 75vw);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 15px 40px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(210, 26, 59, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-play:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(210, 26, 59, 0.55);
}

.btn-play:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.btn-play.btn-play--header {
  margin: 0;
  padding: 10px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 18px rgba(210, 26, 59, 0.38);
}

.btn-play.btn-play--header:hover {
  box-shadow: 0 6px 22px rgba(210, 26, 59, 0.5);
}

.hero-photo {
  display: block;
  width: min(680px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  background: linear-gradient(90deg, var(--text), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 999px;
}

.disclaimer-strip {
  margin-top: 20px;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  text-align: left;
}

h2 {
  margin: 40px 0 16px;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--accent-hot), var(--accent-violet)) 1;
}

h3 {
  margin: 28px 0 12px;
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--accent-cyan);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

li {
  margin-bottom: 0.35rem;
}

.section-card {
  margin-bottom: 28px;
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-q {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.faq-a {
  color: var(--text-muted);
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: linear-gradient(180deg, rgba(254, 91, 110, 0.2), rgba(139, 92, 246, 0.15));
  color: var(--text);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 16px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-domain {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-hot);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
