@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-primary: #0a1628;
  --bg-secondary: #112240;
  --bg-card: #1a3358;
  --bg-card-hover: #1e3d6a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a08030;
  --red: #e63946;
  --red-dark: #c1121f;
  --blue-accent: #4a90d9;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #243b55;
  --border-light: #2d4f72;
  --success: #10b981;
  --warning: #f59e0b;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; min-height: 100vh; overflow-x: hidden; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== AGE MODAL ===== */
#age-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 10, 20, 0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.age-modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 520px; width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
  animation: slideUp 0.4s ease;
}
.age-modal-box .logo-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.02em; }
.age-modal-box h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 1rem; color: var(--text-primary); }
.age-modal-box p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.age-checkbox-wrap { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; text-align: left; background: var(--bg-card); padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); }
.age-checkbox-wrap input[type="checkbox"] { width: 20px; height: 20px; min-width: 20px; accent-color: var(--gold); margin-top: 2px; cursor: pointer; }
.age-checkbox-wrap label { font-size: 0.9rem; color: var(--text-secondary); cursor: pointer; line-height: 1.5; }
.age-checkbox-wrap label a { color: var(--gold); }
.btn-age-confirm {
  width: 100%; padding: 1rem 2rem;
  background: var(--gold); color: var(--bg-primary);
  font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--radius);
  transition: var(--transition);
  opacity: 0.4; pointer-events: none;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.btn-age-confirm.active { opacity: 1; pointer-events: all; }
.btn-age-confirm.active:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.age-disclaimer { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { flex: 1; font-size: 0.88rem; color: var(--text-secondary); min-width: 200px; }
#cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-cookie-accept { padding: 0.6rem 1.5rem; background: var(--gold); color: var(--bg-primary); border: none; border-radius: 8px; font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline { padding: 0.6rem 1.5rem; background: transparent; color: var(--text-secondary); border: 1px solid var(--border-light); border-radius: 8px; font-size: 0.88rem; transition: var(--transition); }
.btn-cookie-decline:hover { border-color: var(--text-secondary); color: var(--text-primary); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { font-family: var(--font-head); font-size: 1.35rem; color: var(--gold); font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.nav-logo span { color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: var(--transition); white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta { padding: 0.55rem 1.4rem; background: var(--gold); color: var(--bg-primary); border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); color: var(--bg-primary) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 1.5rem; z-index: 999; flex-direction: column; gap: 1rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-secondary); font-size: 1rem; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 50%, #112240 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(74,144,217,0.05) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 .gold { color: var(--gold); }
.hero h1 .line2 { display: block; }
.hero p { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-secondary); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { padding: 0.9rem 2.2rem; background: var(--gold); color: var(--bg-primary); border: none; border-radius: var(--radius); font-weight: 700; font-size: 1rem; transition: var(--transition); letter-spacing: 0.02em; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold); color: var(--bg-primary); }
.btn-secondary { padding: 0.9rem 2.2rem; background: transparent; color: var(--text-primary); border: 2px solid var(--border-light); border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: var(--transition); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat .label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ===== SECTIONS ===== */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.section-title .gold { color: var(--gold); }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== GAMES GRID ===== */
.games-section { background: var(--bg-secondary); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.1); }
.game-card-visual {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  font-size: 5rem;
}
.game-card-visual.poker-bg { background: linear-gradient(135deg, #0b2a1a 0%, #1a4a2e 100%); }
.game-card-visual.slots-bg { background: linear-gradient(135deg, #1a0b2e 0%, #2d1b47 100%); }
.game-card-visual.blackjack-bg { background: linear-gradient(135deg, #1a0b0b 0%, #3a1515 100%); }
.game-card-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%); z-index: 1; }
.game-card-visual .icon { position: relative; z-index: 0; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.game-tag { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--bg-primary); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
.game-card-body { padding: 1.75rem; }
.game-card-body h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 0.6rem; }
.game-card-body p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.5rem; }
.game-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.game-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); }
.game-meta-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.btn-play { display: block; width: 100%; padding: 0.8rem; background: var(--gold); color: var(--bg-primary); border: none; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; text-align: center; transition: var(--transition); }
.btn-play:hover { background: var(--gold-light); color: var(--bg-primary); transform: translateY(-2px); }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; background: rgba(201,168,76,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* ===== HOW IT WORKS STRIP ===== */
.how-strip { background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; position: relative; }
.step-item { text-align: center; }
.step-num { width: 56px; height: 56px; background: var(--gold); color: var(--bg-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem; }
.step-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--bg-primary); }
.author-info .name { font-weight: 600; font-size: 0.92rem; }
.author-info .since { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIBLE GAMING SECTION ===== */
.responsible-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.responsible-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.responsible-icon { font-size: 3rem; flex-shrink: 0; }
.responsible-text h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.responsible-text p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }
.responsible-text p a { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: #060e1a;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold); margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-disclaimer {
  max-width: 1200px; margin: 0 auto 2rem;
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.footer-disclaimer h5 { color: var(--red); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 0.75rem; }
.footer-disclaimer p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.7; }
.footer-disclaimer p a { color: var(--text-secondary); text-decoration: underline; }
.footer-disclaimer p a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-18 { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 2px solid var(--text-muted); border-radius: 6px; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); }
.footer-contact { color: var(--text-muted); font-size: 0.84rem; margin-top: 0.4rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-contact a { color: var(--text-muted); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

/* ===== INNER PAGE STYLES ===== */
.page-hero {
  padding: 9rem 2rem 5rem;
  background: linear-gradient(160deg, #0a1628 0%, #112240 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.page-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.page-content h2 { font-family: var(--font-head); font-size: 1.7rem; margin: 2.5rem 0 1rem; color: var(--text-primary); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.6rem; color: var(--gold); }
.page-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
.page-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-content ul li { color: var(--text-secondary); margin-bottom: 0.5rem; font-size: 0.97rem; line-height: 1.7; list-style: disc; }
.page-content ul li::marker { color: var(--gold); }
.page-content .highlight-box { background: var(--bg-card); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.page-content .highlight-box p { margin: 0; }
.page-content .warn-box { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.25); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.page-content .warn-box p { margin: 0; color: #fca5a5; }
.last-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.faq-question { width: 100%; background: var(--bg-card); border: none; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; color: var(--text-primary); font-size: 0.97rem; font-weight: 500; text-align: left; transition: var(--transition); cursor: pointer; }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question.open { border-bottom: 1px solid var(--border); }
.faq-arrow { font-size: 0.75rem; color: var(--gold); transition: transform 0.3s ease; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 1.25rem 1.5rem; color: var(--text-secondary); font-size: 0.93rem; line-height: 1.75; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.support-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.support-card .sicon { font-size: 2.2rem; margin-bottom: 1rem; }
.support-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.support-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.community-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.community-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.community-card .cicon { font-size: 2.5rem; margin-bottom: 1rem; }
.community-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.community-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 2rem 0; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; font-family: var(--font-head); color: var(--bg-primary); font-weight: 700; }
.team-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.82rem; color: var(--gold); margin-bottom: 0.5rem; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.org-links { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.org-link-item { display: flex; align-items: center; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; transition: var(--transition); }
.org-link-item:hover { border-color: var(--gold); }
.org-link-item .org-name { font-weight: 600; font-size: 0.95rem; }
.org-link-item .org-desc { font-size: 0.82rem; color: var(--text-muted); }
.org-link-item a { margin-left: auto; color: var(--gold); font-size: 0.85rem; font-weight: 500; }

/* ===== GAME PAGE STYLES ===== */
.game-page { min-height: 100vh; background: var(--bg-primary); padding-top: 70px; }
.game-header { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.game-header h1 { font-family: var(--font-head); font-size: 1.6rem; }
.game-balance { display: flex; align-items: center; gap: 0.75rem; background: var(--bg-card); border: 1px solid var(--gold); border-radius: var(--radius); padding: 0.6rem 1.25rem; }
.game-balance .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.game-balance .amount { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.game-area { max-width: 900px; margin: 0 auto; padding: 2rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; transition: var(--transition); }
.back-link:hover { color: var(--gold); }

/* ===== POKER GAME ===== */
.poker-table {
  background: radial-gradient(ellipse at center, #1a4a2e 0%, #0b2a1a 70%);
  border: 4px solid #5a3a1a;
  border-radius: 120px;
  padding: 2.5rem;
  min-height: 400px;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}
.poker-community { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.poker-player-hand { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.poker-opponent-hand { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.poker-label { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.card {
  width: 60px; height: 88px;
  background: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.4);
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  flex-direction: column;
  line-height: 1;
}
.card.red { color: #c41e3a; }
.card.black { color: #1a1a1a; }
.card.face-down { background: linear-gradient(135deg, #1a3a7a, #0d2050); color: transparent; cursor: default; }
.card.face-down::after { content: '♦'; position: absolute; color: rgba(255,255,255,0.15); font-size: 2.5rem; }
.card-rank { font-size: 0.85rem; }
.card-suit { font-size: 1.1rem; }
.card:hover:not(.face-down) { transform: translateY(-6px); }
.card.deal-anim { animation: dealCard 0.3s ease; }
@keyframes dealCard { from { transform: translateY(-30px) scale(0.8); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.pot-info { text-align: center; margin-bottom: 1.5rem; }
.pot-info .pot-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.pot-info .pot-amount { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.poker-controls { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.poker-controls button { padding: 0.75rem 1.5rem; border-radius: var(--radius); font-size: 0.92rem; font-weight: 600; border: none; transition: var(--transition); }
.btn-fold { background: rgba(230,57,70,0.15); border: 1px solid var(--red) !important; color: var(--red); }
.btn-fold:hover { background: rgba(230,57,70,0.3); }
.btn-check { background: rgba(74,144,217,0.15); border: 1px solid var(--blue-accent) !important; color: var(--blue-accent); }
.btn-check:hover { background: rgba(74,144,217,0.3); }
.btn-call { background: rgba(16,185,129,0.15); border: 1px solid var(--success) !important; color: var(--success); }
.btn-call:hover { background: rgba(16,185,129,0.3); }
.btn-raise { background: var(--gold); color: var(--bg-primary); }
.btn-raise:hover { background: var(--gold-light); }
.btn-deal-new { background: var(--gold); color: var(--bg-primary); padding: 0.9rem 2.5rem; font-size: 1rem; border-radius: var(--radius); font-weight: 700; }
.poker-status { text-align: center; min-height: 2rem; margin: 1rem 0; }
.poker-status .msg { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 1.5rem; display: inline-block; font-size: 0.95rem; }
.poker-status .msg.win { border-color: var(--success); color: var(--success); }
.poker-status .msg.lose { border-color: var(--red); color: var(--red); }
.bet-selector { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; }
.bet-selector label { font-size: 0.85rem; color: var(--text-secondary); }
.bet-selector input[type="range"] { accent-color: var(--gold); }
.bet-selector .bet-val { font-weight: 700; color: var(--gold); min-width: 60px; }

/* ===== SLOTS ===== */
.slots-machine { background: linear-gradient(160deg, #1a0b2e, #2d1b47); border: 3px solid #5a3080; border-radius: 24px; padding: 2.5rem; text-align: center; box-shadow: 0 0 40px rgba(90,48,128,0.3); }
.slots-display { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 2rem 0; }
.reel-wrap { background: #0a0515; border: 2px solid #3a1f5a; border-radius: 12px; overflow: hidden; width: 100px; height: 120px; position: relative; }
.reel-win-line { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 2px; background: rgba(201,168,76,0.4); z-index: 2; pointer-events: none; }
.reel { position: absolute; width: 100%; transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
.reel-symbol { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; user-select: none; }
.slots-divider { font-size: 1.5rem; color: rgba(255,255,255,0.2); }
.slots-info { display: flex; gap: 2rem; justify-content: center; margin: 1.5rem 0; flex-wrap: wrap; }
.slots-info-item { text-align: center; }
.slots-info-item .si-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.slots-info-item .si-val { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold); }
.bet-chips { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.chip { width: 52px; height: 52px; border-radius: 50%; border: 3px solid; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; cursor: pointer; transition: var(--transition); background: transparent; }
.chip.chip-10 { border-color: #64748b; color: #94a3b8; }
.chip.chip-25 { border-color: var(--blue-accent); color: var(--blue-accent); }
.chip.chip-50 { border-color: var(--success); color: var(--success); }
.chip.chip-100 { border-color: var(--gold); color: var(--gold); }
.chip.chip-250 { border-color: var(--red); color: var(--red); }
.chip:hover { transform: scale(1.1); }
.chip.selected { transform: scale(1.15); }
.chip.chip-10.selected { background: rgba(100,116,139,0.2); }
.chip.chip-25.selected { background: rgba(74,144,217,0.2); }
.chip.chip-50.selected { background: rgba(16,185,129,0.2); }
.chip.chip-100.selected { background: rgba(201,168,76,0.2); }
.chip.chip-250.selected { background: rgba(230,57,70,0.2); }
.btn-spin { width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 50%, var(--gold-dark)); color: var(--bg-primary); font-size: 1.1rem; font-weight: 800; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 6px 20px rgba(201,168,76,0.4), inset 0 2px 4px rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 auto; display: block; }
.btn-spin:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 8px 28px rgba(201,168,76,0.6); }
.btn-spin:active:not(:disabled) { transform: scale(0.97); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.slots-result { min-height: 2.5rem; text-align: center; font-size: 1.1rem; font-weight: 600; margin-top: 1rem; }
.slots-result.win { color: var(--gold); animation: winPulse 0.5s ease 3; }
.slots-result.jackpot { color: #fff; animation: jackpot 0.6s ease infinite alternate; }
@keyframes jackpot { from { color: var(--gold); text-shadow: 0 0 20px var(--gold); } to { color: var(--gold-light); text-shadow: 0 0 40px var(--gold-light); } }
@keyframes winPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.paytable { background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 1.25rem; margin-top: 2rem; }
.paytable h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.paytable-row { display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; }
.paytable-row:last-child { border-bottom: none; }
.paytable-row .symbols { font-size: 1.2rem; letter-spacing: 4px; }
.paytable-row .payout { color: var(--gold); font-weight: 600; }

/* ===== BLACKJACK ===== */
.bj-table { background: radial-gradient(ellipse at center, #0b2e0b 0%, #061506 70%); border: 4px solid #3a2a0a; border-radius: 20px; padding: 2rem; min-height: 380px; }
.bj-hand-label { text-align: center; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.bj-hand { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; min-height: 88px; margin-bottom: 0.75rem; }
.bj-score { text-align: center; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; }
.bj-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1rem 0; }
.bj-controls { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.bj-controls button { padding: 0.75rem 1.75rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; border: none; transition: var(--transition); }
.btn-bj-hit { background: var(--success); color: white; }
.btn-bj-hit:hover { background: #059669; }
.btn-bj-stand { background: var(--red); color: white; }
.btn-bj-stand:hover { background: var(--red-dark); }
.btn-bj-double { background: var(--blue-accent); color: white; }
.btn-bj-double:hover { background: #2563eb; }
.btn-bj-new { background: var(--gold); color: var(--bg-primary); }
.btn-bj-new:hover { background: var(--gold-light); }
.bj-status { text-align: center; min-height: 2.5rem; font-size: 1rem; font-weight: 600; margin: 1rem 0; }
.bj-status.win { color: var(--success); }
.bj-status.lose { color: var(--red); }
.bj-status.push { color: var(--blue-accent); }
.bj-status.bj { color: var(--gold); }
.bet-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.bet-row label { font-size: 0.88rem; color: var(--text-secondary); }
.bet-row select { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-primary); border-radius: 8px; padding: 0.5rem 0.75rem; font-size: 0.9rem; }

/* ===== ANIMATIONS ===== */
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .hero { padding: 6rem 1.25rem 4rem; }
  .hero-stats { gap: 2rem; }
  .poker-table { border-radius: 20px; padding: 1.5rem; }
  .card { width: 48px; height: 72px; font-size: 0.95rem; }
  .card-rank { font-size: 0.72rem; }
  .card-suit { font-size: 0.9rem; }
  .reel-wrap { width: 80px; height: 100px; }
  .reel-symbol { height: 100px; font-size: 2.8rem; }
  .btn-spin { width: 130px; height: 130px; font-size: 0.95rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .game-header { padding: 1rem 1.25rem; }
  .game-area { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reel-wrap { width: 70px; height: 90px; }
  .reel-symbol { height: 90px; font-size: 2.4rem; }
}
