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

:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --accent: #fb923c;
    --warm: #fef3c7;
    --bg: #0f0f0f;
    --bg-alt: #171717;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #fafafa;
    --text-muted: #a3a3a3;
    --glow: rgba(245, 158, 11, 0.4);
}

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: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar - Glassmorphism */
.top-bar {
    background: rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--primary-light);
}

/* Header */
header {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--text);
}

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

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

nav a:hover,
nav a.current {
    color: var(--bg);
    background: var(--primary);
}

/* Hero - Glass Card Style */
.hero {
    padding: 100px 0 80px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(251, 146, 60, 0.06) 0%, transparent 50%);
}

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

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 12px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

.hero-text h1 em {
    font-style: normal;
    color: var(--primary);
}

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

.hero-image img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 60px var(--glow);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg);
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow);
}

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

.btn-glass:hover {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
}

/* Stats - Glass Cards */
.stats-section {
    padding: 50px 0;
    background: var(--bg-alt);
}

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

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* Section */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(245, 158, 11, 0.05) 100%);
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-light);
}

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

/* Content Block */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

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

.content-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
}

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

.list-check li {
    padding: 14px 0;
    padding-left: 34px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--glass-border);
}

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

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.content-image img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

/* Steps - Numbered Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

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

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

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

.step-card h4 {
    font-size: 13px;
    margin-bottom: 4px;
}

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

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.game-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-card-body {
    padding: 24px;
}

.game-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.game-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.game-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Tips List */
.tips-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tip-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.tip-item .num {
    min-width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg);
}

.tip-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 30px;
    margin-bottom: 14px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-light);
}

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

/* Page Hero */
.page-hero {
    padding: 140px 0 70px;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 14px;
}

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

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    text-align: center;
    border-radius: 30px;
    margin: 0 24px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 14px;
    color: var(--bg);
}

.cta-section p {
    font-size: 17px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 28px;
}

/* Footer */
footer {
    background: var(--bg-alt);
    padding: 70px 0 30px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: #525252;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .content-block { grid-template-columns: 1fr; text-align: center; }
    .content-block.reverse { direction: ltr; }
    .features-grid, .games-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero-text h1 { font-size: 36px; }
    .features-grid, .games-grid, .tips-list { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
