/* ==========================================
   Base / Shared Styles
   ========================================== */

/* Design Tokens */
/* Ensure padding & border don't break width */
*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --color-bg: #1a1d21;
    --color-bg-navbar: #1a1d21;
    --color-bg-card: #2b3035;
    --color-bg-icon: #40282d;
    --color-accent: #e50914;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-text-subtle: #888888;
    --color-border: #464c52;
    --color-border-soft: rgba(255, 255, 255, 0.08);

    --font-display: 'PP Right Grotesk', 'Clash Display', 'Arial Black', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --transition-base: all 0.3s ease;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
}



body {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--color-accent);
}
.eyebrow {
    letter-spacing: .14em;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 10px rgba(229, 9, 20, .75);
}

/* Footer */
.custom-footer {
    background-color: var(--color-bg);
    color: var(--color-text-subtle);
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid var(--color-border-soft);
    margin-top: auto;
}

/* Shared Responsive Styles */
@media (max-width: 991.98px) {
    .navbar .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--color-border-soft);
    }

    .btn-sign-in {
        text-align: center;
    }
}