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

:root {
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --amber: #f97316;
    --bronze: #b45309;
    --bg: #18181b;
    --bg-light: #27272a;
    --bg-card: #1f1f23;
    --text: #fafafa;
    --text-dim: #a1a1aa;
    --border: rgba(245, 158, 11, 0.25);
    --gradient: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    --metallic: linear-gradient(135deg, #fcd34d 0%, #f59e0b 25%, #d97706 50%, #f59e0b 75%, #fcd34d 100%);
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--metallic);
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg);
}

/* Header */
header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

nav a {
    color: var(--text-dim);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

nav a:hover {
    color: var(--gold);
    border-color: var(--border);
}

nav a.active {
    background: var(--gradient);
    color: var(--bg);
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 100px 0 70px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .gold {
    background: var(--metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

/* Buttons */
.btn-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: var(--gradient);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-dark {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Stats */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 0;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metallic);
}

.stat-box h3 {
    font-size: 34px;
    font-weight: 800;
    background: var(--metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-box span {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-light);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-dim);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
}

/* Luxury Cards */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.luxury-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: var(--metallic);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.luxury-card:hover::before {
    opacity: 1;
}

.luxury-card:hover {
    transform: translateY(-6px);
}

.luxury-card img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
}

.luxury-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.luxury-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Feature Cards - 3 Column */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.feature-card .icon {
    width: 54px;
    height: 54px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card .icon img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.feature-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-split.flip {
    direction: rtl;
}

.content-split.flip > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.content-text p {
    color: var(--text-dim);
    margin-bottom: 14px;
    font-size: 15px;
}

.check-list {
    list-style: none;
    margin: 24px 0;
}

.check-list li {
    padding: 14px 0;
    padding-left: 34px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--text-dim);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 14px;
}

.content-img img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Steps */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.step-card .num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--bg);
}

.step-card img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    margin: 8px 0 14px;
}

.step-card h5 {
    font-size: 14px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 12px;
    color: var(--text-dim);
}

/* Game List */
.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.game-tag {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.game-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

/* FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.faq-box:hover {
    border-color: var(--gold);
}

.faq-box h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.faq-box p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-dim);
    font-size: 17px;
}

/* CTA */
.cta-block {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--metallic);
}

.cta-block h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.cta-block p {
    color: var(--text-dim);
    margin-bottom: 26px;
}

/* Footer */
footer {
    background: var(--bg-light);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: #71717a;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout, .content-split { grid-template-columns: 1fr; text-align: center; }
    .content-split.flip { direction: ltr; }
    .luxury-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 36px; }
    .luxury-grid, .feature-grid { grid-template-columns: 1fr; }
    .stats-section { grid-template-columns: repeat(2, 1fr); }
    .footer-layout { grid-template-columns: 1fr 1fr; }
    .cta-block { padding: 40px 24px; }
}
