/* =============================================================================
   Stardas Viu — Main Stylesheet
   Import all partials here
   ============================================================================= */

/* Design Tokens */
@import url("variables.7c5f2285a995.css");

/* Components */
@import url("components/navbar.f98d424f04f3.css");
@import url("components/cards.adcf5b1916fc.css");
@import url("components/buttons.a7539952351f.css");
@import url("components/notification.e60e35a8dad4.css");
@import url("components/footer.2e7e7adfe30b.css");

/* Pages */
@import url("pages/home/home.099b39c08dec.css");
@import url("pages/stream/stream.8104dc4e0060.css");
@import url("pages/auth/auth.922b8ad94db0.css");

/* =============================================================================
   Global Styles
   ============================================================================= */

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

html {
    font-size: 19px; /* Default 16px + 3px increase */
}

body {
    font-family: var(--sd-font-primary);
    background-color: var(--sd-dark);
    color: var(--sd-light);
    min-height: 100vh;
}

a {
    color: var(--sd-primary);
    text-decoration: none;
    transition: var(--sd-transition);
}

a:hover {
    color: var(--sd-primary-hover);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sd-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--sd-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sd-muted);
}

/* Selection */
::selection {
    background: var(--sd-primary);
    color: white;
}

/* Section spacing */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sd-light);
    margin-bottom: 1.5rem;
}
