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

/* Design Tokens */
@import url('variables.css');

/* Components */
@import url('components/navbar.css');
@import url('components/cards.css');
@import url('components/buttons.css');
@import url('components/footer.css');

/* Pages */
@import url('pages/home/home.css');
@import url('pages/stream/stream.css');
@import url('pages/auth/auth.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;
}
