:root {
    --bg-dark: #050505;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-purple: #bd34fe;
    --accent-pink: #ff3670;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Blobs */
.blob-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
}
.top-left {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: -100px;
    left: -100px;
}
.bottom-right {
    width: 500px;
    height: 500px;
    background: var(--accent-pink);
    bottom: -150px;
    right: -150px;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 12px; }
.nav-icon { width: 36px; height: 36px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: color 0.3s;}
.nav-link:hover { color: var(--text-primary); }

.cta-btn {
    text-decoration: none;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn.small { padding: 10px 24px; }
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(189, 52, 254, 0.4);
}
.cta-btn.main-cta {
    background: transparent;
    display: inline-block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    margin-top: 50px;
}
.hero-content {
    max-width: 50%;
}
.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    background: linear-gradient(to right, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}
.play-badge { width: 220px; transition: transform 0.3s ease; }
.play-badge:hover { transform: scale(1.05); }

.hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
}
.floating-mockup {
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    animation: float 6s ease-in-out infinite;
}

/* Keyframes */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Features */
.features-section {
    padding: 100px 10%;
}
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -1px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.feature-card {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.4s ease, background 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}
.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--accent-purple);
    font-weight: 800;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; margin: 0 15px; font-weight: 600; transition: color 0.3s;}
.footer-links a:hover { color: var(--text-primary); }

/* Animations Trigger */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in {
    opacity: 0;
    transition: all 1.2s ease;
}
.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive layout */
@media(max-width: 990px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; padding-bottom: 60px;}
    .hero-content { max-width: 100%; margin-bottom: 50px; display: flex; flex-direction: column; align-items: center;}
    .hero-content p { max-width: 100%;}
    .hero-content h1 { font-size: 3.5rem; }
    .hero-image { width: 90%; }
}
