/* ============================================
   SOCIAL CASINO — MAIN STYLESHEET
   Theme: Dark Premium | Black + Grey + Orange
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #111118;
  --bg-card:       #16161f;
  --bg-card2:      #1c1c28;
  --orange:        #f97316;
  --orange-light:  #fb923c;
  --orange-dark:   #ea580c;
  --grey:          #9ca3af;
  --grey-light:    #d1d5db;
  --grey-dark:     #4b5563;
  --white:         #ffffff;
  --text-primary:  #f1f5f9;
  --text-muted:    #94a3b8;
  --border:        rgba(249,115,22,0.15);
  --border-grey:   rgba(255,255,255,0.07);
  --glass:         rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.1);
  --shadow-orange: 0 0 30px rgba(249,115,22,0.25);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: var(--white);
}

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.section-label {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.25);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 6px 30px rgba(249,115,22,0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-grey);
  transition: var(--transition);
}
.site-header.scrolled::before { background: rgba(10,10,15,0.97); }

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(249,115,22,0.4);
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--orange); }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: var(--grey-light);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: rgba(249,115,22,0.08); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.88rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}


/* Hero placeholder when image missing */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a00 40%, #0f0a1f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,15,0.92) 0%,
    rgba(10,10,20,0.75) 50%,
    rgba(15,10,5,0.90) 100%);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) infinite ease-in;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-badge-corner {
  position: absolute;
  top: 100px; right: 24px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(249,115,22,0.5);
  animation: pulse 2s infinite;
  z-index: 5;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(249,115,22,0.5); }
  50% { box-shadow: 0 0 40px rgba(249,115,22,0.8); }
}

/* Floating icons */
.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.float-icon {
  position: absolute;
  opacity: 0.12;
  animation: floatDrift var(--fdur, 8s) var(--fdelay, 0s) ease-in-out infinite alternate;
  font-size: var(--fsize, 2rem);
}
@keyframes floatDrift {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-30px) rotate(20deg); }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section { background: var(--bg-secondary); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 6/5;
  background: linear-gradient(135deg, #1a1a2e 0%, #1f1a0a 50%, #0a1a1a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--border-grey);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.about-img-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }

.about-text { }
.about-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  transition: var(--transition);
}
.perk-item:hover {
  border-color: var(--border);
  background: var(--bg-card2);
}
.perk-icon {
  width: 40px; height: 40px;
  background: rgba(249,115,22,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 20px; height: 20px; }
.perk-label { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.perk-desc { font-size: 0.78rem; color: var(--text-muted); }

/* ============================
   GAME SHOWCASE
   ============================ */
.game-section { background: var(--bg-primary); }

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 340px;
  transition: var(--transition);
}
.game-card:hover { border-color: var(--border); box-shadow: var(--shadow-orange); }

.game-img-wrap {
  position: relative;
  overflow: hidden;
}
.game-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #1a0f00 0%, #2a1800 50%, #1a0a05 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.game-img-placeholder svg { width: 56px; height: 56px; opacity: 0.35; }
.game-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.game-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.game-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.2);
  margin-bottom: 16px;
  width: fit-content;
}
.game-title { font-size: 1.9rem; font-weight: 800; margin-bottom: 16px; }
.game-desc { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 24px; }

/* ============================
   FAQ SECTION
   ============================ */
.faq-section { background: var(--bg-secondary); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--orange); transition: var(--transition); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { background: var(--bg-primary); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-orange); }

.testi-header { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main);
  font-size: 1rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.testi-location { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars { display: flex; gap: 3px; }
.star { color: #f59e0b; font-size: 0.9rem; }
.testi-text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; flex: 1; font-style: italic; }

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-section { background: var(--bg-secondary); }

.newsletter-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-orange);
}
.newsletter-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-sub { color: var(--text-muted); margin-bottom: 32px; }

.newsletter-form { display: flex; flex-direction: column; gap: 16px; }
.input-row { display: flex; gap: 12px; }
.form-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-grey);
  border-radius: 100px;
  padding: 14px 22px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; text-align: left; }
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.checkbox-row label { font-size: 0.85rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.checkbox-row a { color: var(--orange); }

.newsletter-links { margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }
.newsletter-links a { color: var(--orange); }

.subscribe-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  color: #4ade80;
  font-weight: 600;
}

/* ============================
   DISCLAIMER SECTION
   ============================ */
.disclaimer-section {
  background: var(--bg-primary);
  padding: 40px 0;
}
.disclaimer-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, rgba(234,88,12,0.04) 100%);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.disclaimer-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.disclaimer-badge {
  display: inline-flex; align-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem; font-weight: 800;
  padding: 4px 12px; border-radius: 100px;
  margin-left: 10px;
  vertical-align: middle;
}
.disclaimer-title {
  font-family: var(--font-main);
  font-size: 1.1rem; font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.disclaimer-text {
  color: var(--grey-light);
  font-size: 0.88rem;
  line-height: 1.75;
}
.disclaimer-text p { margin-bottom: 6px; }
.disclaimer-text p:last-child { margin-bottom: 0; }
.disclaimer-text strong { color: var(--white); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #07070d;
  border-top: 1px solid var(--border-grey);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 12px; display: block; color: var(--white); }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-18 {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-size: 0.8rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
}

.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }
.contact-item span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--border-grey);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { color: var(--text-muted); font-size: 0.82rem; }
.footer-mini-disclaimer { color: var(--text-muted); font-size: 0.78rem; max-width: 520px; text-align: right; }

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(16,16,24,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-text { color: var(--text-muted); font-size: 0.88rem; flex: 1; min-width: 240px; }
.cookie-text a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn { padding: 10px 22px; font-size: 0.84rem; }
.cookie-btns .btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-grey); border-radius: 100px;
  cursor: pointer; font-family: var(--font-body); font-size: 0.84rem; font-weight: 500;
  padding: 10px 22px; transition: var(--transition);
}
.cookie-btns .btn-ghost:hover { color: var(--white); border-color: var(--grey-dark); }

/* ============================
   GAME PAGE
   ============================ */
.game-page-hero {
  padding: 120px 0 48px;
  background: var(--bg-secondary);
  text-align: center;
}
.game-page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 12px; }
.game-page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.game-steps { display: flex; gap: 20px; margin: 48px 0 0; flex-wrap: wrap; justify-content: center; }
.step-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 220px;
}
.step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.step-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; }
.step-text strong { display: block; color: var(--white); font-size: 0.92rem; }

.iframe-section { background: var(--bg-primary); padding: 48px 0; }
.iframe-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-orange);
  aspect-ratio: 16/9;
  width: 100%;
}
.iframe-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.iframe-fallback { padding: 40px; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

.game-note {
  text-align: center;
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.game-note strong { color: var(--orange); }

/* ============================
   CONTACTS PAGE
   ============================ */
.contacts-page-hero {
  padding: 120px 0 56px;
  background: var(--bg-secondary);
  text-align: center;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.contacts-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.ci-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ci-value { color: var(--white); font-size: 0.97rem; }

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-box h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--grey-light); margin-bottom: 8px; }
.form-group label .req { color: var(--orange); }
.form-field {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-field::placeholder { color: var(--text-muted); }
.form-field:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
.form-field option { background: var(--bg-card2); color: var(--white); }
textarea.form-field { resize: vertical; min-height: 120px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 0.84rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.form-check a { color: var(--orange); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #4ade80;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}
.loader {
  display: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================
   LEGAL PAGES (Terms, Cookies, Responsible)
   ============================ */
.legal-hero {
  padding: 120px 0 56px;
  background: var(--bg-secondary);
  text-align: center;
}
.legal-hero h1 { margin-bottom: 12px; }
.legal-date { color: var(--text-muted); font-size: 0.9rem; }

.legal-content {
  padding: 60px 0 80px;
  background: var(--bg-primary);
}
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin: 40px 0 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-grey);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--grey-light); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.legal-body ul { margin: 12px 0 16px 20px; list-style: disc; }
.legal-body ul li { color: var(--grey-light); font-size: 0.97rem; line-height: 1.7; margin-bottom: 8px; }
.legal-body a { color: var(--orange); }
.legal-body strong { color: var(--white); }

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================
   INNER PAGE HERO (generic)
   ============================ */
.inner-hero {
  padding: 120px 0 56px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}
.inner-hero h1 { margin-bottom: 12px; }
.inner-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ============================
   RESPONSIVE
   ============================ */

/* 1024px */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .game-card { grid-template-columns: 1fr; }
  .game-img-wrap { min-height: 220px; }
  .game-img-placeholder { min-height: 220px; }
}

/* 768px */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-mini-disclaimer { text-align: center; }
  .newsletter-box { padding: 36px 24px; }
  .input-row { flex-direction: column; }
  .disclaimer-box { flex-direction: column; gap: 12px; }

  /* Mobile nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .nav-cta { margin-left: 0; }
  .nav-cta .btn { padding: 14px 36px; font-size: 1rem; }
  .nav-toggle { display: flex; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-badge-corner { width: 48px; height: 48px; font-size: 0.75rem; top: 82px; right: 16px; }
  .game-steps { flex-direction: column; }
  .step-badge { min-width: 0; width: 100%; }
  .contact-form-box { padding: 24px 20px; }
  .game-info { padding: 24px; }
  .disclaimer-box { padding: 24px 20px; }
}
