@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #000; --fg: #fff;
  --card: #121212; --card-fg: #fff;
  --primary: #ff6600; --primary-fg: #1a1a1a;
  --secondary: #262626; --secondary-fg: #e6e6e6;
  --muted: #1f1f1f; --muted-fg: #a6a6a6;
  --border: #333;
  --radius: 0.25rem;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media(min-width:768px) { .header-inner { height: 80px; } }
.header-logo { height: 40px; width: auto; flex-shrink: 0; }
@media(min-width:768px) { .header-logo { height: 48px; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media(min-width:1024px) { .nav-desktop { display: flex; } }
.nav-desktop a { font-size: 0.875rem; font-weight: 600; font-family: var(--font-heading); letter-spacing: 0.05em; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0.625rem 1.5rem; background: var(--primary); color: var(--primary-fg); font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.05em; border-radius: var(--radius); transition: filter 0.2s; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2.5rem; background: var(--secondary); color: var(--secondary-fg); font-family: var(--font-heading); font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; border-radius: var(--radius); border: 1px solid var(--border); transition: background 0.2s; }
.btn-secondary:hover { background: rgba(38,38,38,0.8); }

.header-cta { display: none; }
@media(min-width:768px) { .header-cta { display: inline-flex; } }

.burger { display: block; padding: 4px; }
@media(min-width:1024px) { .burger { display: none; } }
.burger svg { width: 24px; height: 24px; stroke: var(--fg); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mobile-menu { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem; flex-direction: column; gap: 1rem; }
.mobile-menu.open { display: flex; }
@media(min-width:1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a { font-size: 0.875rem; font-weight: 600; font-family: var(--font-heading); color: rgba(255,255,255,0.8); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }

/* Hero */
.hero { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; overflow: hidden; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 6rem 1rem 8rem; }
.hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
@media(min-width:768px) { .hero h1 { font-size: 3rem; } }
@media(min-width:1024px) { .hero h1 { font-size: 3.75rem; } }
.hero p { font-size: 1.125rem; color: var(--muted-fg); max-width: 640px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media(min-width:640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
.hero-buttons .btn-primary { padding: 0.875rem 2.5rem; font-size: 1rem; }

/* Page hero (subpages) */
.page-hero { position: relative; padding: 4rem 0 6rem; background-size: cover; background-position: center; text-align: center; }
.page-hero .hero-overlay { background: rgba(0,0,0,0.6); }
.page-hero h1 { position: relative; z-index: 10; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
@media(min-width:768px) { .page-hero h1 { font-size: 3rem; } }
.page-hero p { position: relative; z-index: 10; color: var(--muted-fg); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* Features */
.features { padding: 4rem 0 6rem; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media(min-width:768px) { .features-grid { grid-template-columns: repeat(3,1fr); gap: 2rem; } }
.feature-card { text-align: center; }
.feature-card img { height: 80px; width: auto; margin: 0 auto 1.5rem; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; white-space: pre-line; }
.feature-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* Platform */
.platform { padding: 4rem 0 6rem; }
.platform-img { width: 100%; max-width: 56rem; margin: 0 auto 3rem; border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.platform h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 2.5rem; }
@media(min-width:768px) { .platform h2 { font-size: 2.25rem; } }
.platform-cols { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media(min-width:768px) { .platform-cols { grid-template-columns: 1fr 1fr; } }
.platform-cols p { color: rgba(255,255,255,0.9); line-height: 1.7; }
.platform-cols p.italic { font-style: italic; color: var(--muted-fg); margin-bottom: 1.5rem; }

/* CTA */
.cta { position: relative; min-height: 450px; display: flex; align-items: center; justify-content: center; background-attachment: fixed; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); }
.cta-content { position: relative; z-index: 10; text-align: center; padding: 5rem 1rem; }
.cta h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2.5rem; }
@media(min-width:768px) { .cta h2 { font-size: 2.25rem; } }
.cta .btn-primary { padding: 1rem 3rem; font-size: 1.125rem; }

/* Footer */
.footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-payments { padding: 2rem 0; text-align: center; }
.footer-payments p { font-size: 0.875rem; color: var(--muted-fg); font-family: var(--font-heading); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.payment-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.payment-badge { padding: 0.625rem 1.25rem; background: var(--secondary); border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; color: var(--secondary-fg); letter-spacing: 0.05em; }
.footer-sep { height: 1px; background: var(--border); }
.footer-bottom { padding: 1.25rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); }
@media(min-width:640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Cards grid (promotions, reviews) */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media(min-width:768px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 2rem; transition: border-color 0.2s; }
.card:hover { border-color: rgba(255,102,0,0.3); }

/* Promo icon */
.promo-icon { width: 3.5rem; height: 3.5rem; background: rgba(255,102,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.promo-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.card > p { color: var(--muted-fg); line-height: 1.7; }
.promo-code { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; background: rgba(255,102,0,0.1); border: 1px solid rgba(255,102,0,0.2); border-radius: 0.5rem; padding: 0.5rem 1rem; }
.promo-code small { font-size: 0.75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.1em; }
.promo-code strong { color: var(--primary); font-family: monospace; font-size: 1.125rem; }

/* Stars */
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.stars svg { width: 16px; height: 16px; }
.stars svg.filled { fill: var(--primary); stroke: var(--primary); }
.stars svg.empty { fill: none; stroke: var(--muted-fg); }

.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.review-meta .date { font-size: 0.75rem; color: var(--muted-fg); }
.review-text { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; }
.review-author { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; }

/* Section headings */
.section-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.section-heading h2 { font-size: 1.5rem; font-weight: 700; }
.badge { font-size: 0.875rem; color: var(--muted-fg); background: var(--muted); padding: 0.25rem 0.75rem; border-radius: 9999px; }

/* FAQ */
.faq-section { padding: 4rem 0 5rem; }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; overflow: hidden; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; font-family: var(--font-heading); font-weight: 600; text-align: left; font-size: 0.95rem; transition: color 0.2s; cursor: pointer; }
.faq-trigger:hover { color: var(--primary); }
.faq-trigger svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 1.5rem 1rem; color: var(--muted-fg); line-height: 1.7; font-size: 0.9rem; }

/* Mobile poker features */
.mp-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 4rem; }
@media(min-width:768px) { .mp-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.mp-img { border-radius: 0.75rem; border: 1px solid var(--border); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.mp-features { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px) { .mp-features { grid-template-columns: 1fr 1fr; } }
.mp-feature { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; display: flex; gap: 1rem; }
.mp-feature-icon { width: 48px; height: 48px; background: rgba(255,102,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mp-feature-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; }
.mp-feature h3 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.25rem; }
.mp-feature p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* Scroll reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--primary); color: var(--primary-fg); border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 40; transition: opacity 0.3s; box-shadow: 0 4px 12px rgba(255,102,0,0.3); }
.scroll-top.visible { display: flex; }
.scroll-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Utility */
.pt-header { padding-top: 64px; }
@media(min-width:768px) { .pt-header { padding-top: 80px; } }
.section-pad { padding: 4rem 0 5rem; }
.text-center { text-align: center; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
