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

html,
body
{
    font-family: 'Roboto', sans-serif;
    background-color: #010101;
    color: #ffffff;
    /* allow native scroll on mobile, prevent on desktop later */
    overflow-x: hidden;
    overflow-y: auto;
}

/* On Mobile: Canvas is top, text is bottom (Scrollable) */
.glass-header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    pointer-events: auto;
}

.header-logo
{
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

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

.header-nav a
{
    text-decoration: none;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav a:hover
{
    color: #ffffff;
}

.header-actions
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a
{
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.login-btn
{
    color: #a0a0a0;
    transition: color 0.2s ease;
}

.login-btn:hover
{
    color: #ffffff;
}

.signup-btn
{
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease;
}

.signup-btn:hover
{
    background: rgba(255, 255, 255, 0.2);
}

.hero-section
{
    position: fixed;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    pointer-events: none;
    max-width: 380px;
}

.hero-title
{
    font-family: 'Roboto', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-highlight
{
    background: -webkit-linear-gradient(45deg, #a745ff, #825be6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle
{
    font-size: 1rem;
    font-weight: 400;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
}

.main-download-btn
{
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-radius: 12px;
    background: rgba(40, 20, 70, 0.4);
    border: 1px solid rgba(130, 91, 230, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(130, 91, 230, 0.1);
}

.main-download-btn:hover
{
    background: rgba(40, 20, 70, 0.6);
    border-color: rgba(130, 91, 230, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(130, 91, 230, 0.3);
}

.dl-icon
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.dl-icon svg
{
    width: auto;
    height: 32px;
    fill: currentColor;
}

.dl-info
{
    display: flex;
    flex-direction: column;
}

.dl-title
{
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.dl-meta
{
    color: #8a8a8a;
    font-size: 0.9rem;
}

.dl-fallback
{
    pointer-events: auto;
    font-size: 0.9rem;
    color: #808080;
    text-decoration: none;
    transition: color 0.2s;
}

.dl-fallback:hover
{
    color: #ffffff;
}

.glass-footer
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    pointer-events: auto;
}

.footer-copyright
{
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-links
{
    display: flex;
    gap: 20px;
}

.footer-links a
{
    text-decoration: none;
    color: #a0a0a0;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover
{
    color: #ffffff;
}

.experience
{
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}



/* Desktop optimizations */
@media (min-width: 1000px) {
    body {
        overflow: hidden; /* lock scroll on PC */
    }
    
    .experience
    {
        position: fixed;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
    }
}

.credits
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #555555;
    text-align: right;
    font-family: 'Roboto', sans-serif;
    z-index: 10;
}

.credits a
{
    color: inherit;
}
/* Mobile Optimizations */
.hamburger-btn { display: none; }

@media (max-width: 768px) {
    .header-nav, .header-actions {
        display: none !important;
    }
    
    .hamburger-btn {
        display: block;
        cursor: pointer;
        padding: 8px;
        background: none;
        border: none;
    }
    .hamburger-btn svg {
        width: 28px;
        height: 28px;
        fill: #ffffff;
    }

    .hero-section {
        top: auto !important;
        bottom: 80px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        align-items: center;
        text-align: center;
        width: 90vw;
        max-width: 400px;
        z-index: 20;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .main-download-btn {
        padding: 14px 20px;
        justify-content: center;
    }

    .dl-title {
        font-size: 1.1rem;
    }

    .glass-footer {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 12px 20px;
        gap: 8px;
    }
    
    .footer-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
}



/*# sourceMappingURL=main.css.map*/