:root {
    --brand-purple: #2C145B;
    --brand-gold: #FFD700;
}

body {
    background-color: var(--brand-purple);
    font-family: 'Poppins', sans-serif;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

#cosmic-dust-bkg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(121, 56, 226, 0.3), rgba(255, 255, 255, 0));
    z-index: 0;
    pointer-events: none;
}

#app-container {
    position: relative;
    z-index: 1;
}

.iphone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background-color: #1a1a1a;
    border-radius: 40px;
    border: 10px solid #000;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .iphone-mockup {
        width: 320px;
        height: 650px;
    }
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .feature-item {
        grid-template-columns: 1fr 1fr;
    }
    .feature-item:nth-child(even) .feature-text {
        order: -1;
    }
}

/* Early Access Event Styles */
.event-image-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-image-container img {
    transition: transform 0.3s ease;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.event-image-container:hover img {
    transform: scale(1.02);
}

/* Top 100 Gold Badge Animation */
@keyframes goldShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.bg-brand-gold.relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: goldShimmer 2s infinite;
    border-radius: inherit;
    z-index: 5;
}

#early-access-event {
    background: linear-gradient(135deg, #2C145B 0%, #4C1D95 50%, #5B21B6 100%);
    position: relative;
    overflow: hidden;
}

#early-access-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

/* Language Switch Button Styles */
#lang-switch-btn {
    min-width: 60px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    z-index: 20;
}

@media (max-width: 768px) {
    #lang-switch-btn {
        top: 1rem;
        right: 1rem;
        padding: 8px 16px;
        font-size: 12px;
        min-width: 50px;
    }
    
    #header {
        padding-top: 4rem;
    }
}
