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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #000;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon {
    background: linear-gradient(135deg, #FF6B9D 0%, #E879F9 100%);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #E879F9 100%);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mobile-menu a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #6B8EFF 0%, #E879F9 50%, #FB7185 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prize-banner {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.prize-banner h3 {
    font-size: 1.8rem;
    color: #000;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero .subtitle {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.6);
}

.early-access-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    margin-top: 25px;
    display: inline-block;
    max-width: 90%;
}

.early-access-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Features Section */
.features {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #000 0%, #1a1a2e 100%);
    z-index: 10;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 70px;
}

.section-title .highlight {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-button {
    position: relative;
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.feature-button:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FF6B9D;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4);
}

.feature-preview {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(29, 29, 44, 1), transparent);
}

.feature-content {
    padding: 30px;
}

.custom-icon {
    width: 80px;
    height: 80px;
    background: rgba(240, 147, 251, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-button:hover .custom-icon {
    background: rgba(240, 147, 251, 0.2);
    transform: scale(1.05);
}

.custom-icon svg {
    width: 50px;
    height: 50px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: none;
}

.feature-button h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-button p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Prizes Showcase */
.prizes-showcase {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6B8EFF 0%, #E879F9 50%, #FB7185 100%);
    position: relative;
    overflow: hidden;
}

.prizes-showcase::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prize-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.prize-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.prize-card h4 {
    color: #FFD93D;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.prize-card p {
    color: white;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Footer */
footer {
    position: relative;
    background: #0a0a0a;
    color: white;
    padding: 60px 20px;
    text-align: center;
    z-index: 10;
}

.footer-brand {
    background: linear-gradient(135deg, #FF6B9D 0%, #E879F9 100%);
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo-box {
    background: #FF6B9D;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
}

.footer-logo h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.app-store-button:hover {
    transform: translateY(-3px);
}

.app-store-small {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: left;
}

.app-store-large {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FF6B9D;
    transform: translateY(-5px);
}

.footer-links {
    margin: 30px 0;
}

.footer-links a {
    color: #FF6B9D;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E879F9;
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    color: rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links.desktop-only {
        display: none !important;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
    
    .prize-banner h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
}
