/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #0b0b0b;
    color: #e6e6e6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
    border-left: 1px solid rgba(255,255,255,0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f44444 0%, #8b2635 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff5555 0%, #a33040 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #f44444 #0b0b0b;
}

/* ========== FULL-WIDTH BREAKOUT ========== */
#blurredSection {
    position: relative;
    z-index: 1;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container h1 {
        font-size: 2rem !important;
    }
    
    .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        align-items: center;
    }
}
