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

:root {
    --purple: #a855f7;
    --purple-light: #c084fc;
    --purple-dark: #9333ea;
    --violet: #8b5cf6;
    --indigo: #6366f1;
    --bg: #0c0a1d;
    --bg-card: #13102a;
    --bg-light: #1a1535;
    --text: #f5f5f5;
    --text-dim: #9ca3af;
    --border: rgba(168, 85, 247, 0.3);
    --glow: rgba(168, 85, 247, 0.5);
    --gradient: linear-gradient(135deg, var(--purple) 0%, var(--violet) 50%, var(--indigo) 100%);
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    background-image: 
        radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

/* Banner */
.banner {
    background: var(--gradient);
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Header */
header {
    background: rgba(12, 10, 29, 0.95);
    backdrop-filter: blur(10px);
    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(--gradient);
    -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;
}

nav a:hover {
    color: var(--purple-light);
    background: rgba(168, 85, 247, 0.1);
}

nav a.active {
    background: var(--gradient);
    color: #fff;
}

/* Hero */
.hero {
    padding: 100px 0 70px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--purple-light);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.hero h1 .glow {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--glow);
}

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

.hero-img img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 0 60px var(--glow);
}

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

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

.btn-glow {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 25px var(--glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    background: rgba(168, 85, 247, 0.1);
}

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

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

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(168, 85, 247, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    position: relative;
}

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

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

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

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-light);
    margin-bottom: 14px;
}

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

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

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

.shine-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.shine-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(168, 85, 247, 0.1) 50%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s;
}

.shine-card:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.shine-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shine-card .icon {
    width: 54px;
    height: 54px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

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

.shine-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
    position: relative;
}

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

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

.split-row.reverse {
    direction: rtl;
}

.split-row.reverse > * {
    direction: ltr;
}

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

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

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

.list-star li {
    padding: 14px 0;
    padding-left: 34px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
}

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

.list-star li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 12px;
}

.split-visual img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

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

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

.step-box:hover {
    border-color: var(--purple);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);
}

.step-box .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: #fff;
}

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

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

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

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

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

.game-pill:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    background: rgba(168, 85, 247, 0.15);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

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

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

.faq-card:hover {
    border-color: var(--purple);
}

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

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

/* Page Hero */
.page-hero {
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

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

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

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

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

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

.cta-card 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-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 15px;
    color: var(--purple-light);
    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(--purple-light); }

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

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

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