:root {
    --neon-pink: #FF0055;
    --electric-violet: #BC13FE;
    --cyan-glow: #00F0FF;
    --deep-space: #050014;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-radius: 24px;
    --gradient-main: linear-gradient(135deg, #FF0055 0%, #BC13FE 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--deep-space);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 85, 0.15) 0%, transparent 40%);
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(255, 0, 85, 0.6));
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    color: white;
    background: var(--glass-bg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #FFFFFF, #FF0055, #BC13FE, #FFFFFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite;
}

.hero p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

.hero-actions .app-badge {
    height: 64px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-actions .app-badge:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 20px 30px rgba(188, 19, 254, 0.4));
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--card-radius);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px var(--glass-highlight);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Features Grid */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 120px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-main);
    border-color: transparent;
}

.glass-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 17px;
}

/* Personalized Feature Highlight (New) */
.highlight-section {
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.1) 0%, transparent 100%);
    border-radius: 40px;
    padding: 80px 40px;
    margin-bottom: 120px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.highlight-tag {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan-glow);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: inline-block;
    margin-bottom: 24px;
}

.highlight-title {
    font-size: 42px;
    margin-bottom: 24px;
    color: white;
}

/* Games Showcase */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 120px;
}

.game-item {
    text-align: center;
}

.game-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.game-item:hover .game-icon-circle {
    background: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.5);
    transform: scale(1.1);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 60px auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 56px;
    margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-body h2 {
    color: var(--cyan-glow);
    margin: 48px 0 24px;
    font-size: 28px;
}

.legal-body p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.legal-body strong {
    color: white;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    color: white;
    margin-bottom: 32px;
    font-family: 'Baloo 2', cursive;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyan-glow);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .nav-links {
        display: none;
    }

    .glass-card {
        padding: 32px 24px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}