/* ============================================
   SKRC SHARED STYLES
   ============================================ */

:root {
    --navy-900: #060D18;
    --navy-800: #0A1628;
    --navy-700: #0F1F38;
    --navy-600: #152B4A;
    --navy-500: #1E3A5F;
    --skrc-red: #E31837;
    --skrc-red-light: #FF2D4A;
    --skrc-red-dark: #B71530;
    --white: #FFFFFF;
    --gray-50: #F7F8FA;
    --gray-100: #ECEEF2;
    --gray-200: #D1D5DE;
    --gray-400: #8A8FA0;
    --gray-500: #6B7080;
    --gray-600: #4A4F5E;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition);
    background: rgba(6, 13, 24, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header.scrolled {
    background: rgba(6, 13, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1600px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
    width: 38px; height: 38px; background: var(--skrc-red); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; fill: white; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.logo-text span { color: var(--gray-400); font-weight: 400; font-size: 12px; display: block; letter-spacing: 0.5px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-family: var(--font-display); font-size: 14px; font-weight: 500;
    color: var(--gray-200); transition: color var(--transition);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav-actions { display: flex; gap: 12px; }
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 8px;
}
.mobile-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-900); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    transform: translateY(-100%); transition: transform 0.4s ease;
}
.mobile-nav.active { transform: translateY(0); }
.mobile-nav a {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    color: var(--white); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--skrc-red); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    padding: 10px 20px; border-radius: var(--radius-sm); transition: all var(--transition); cursor: pointer;
    border: 1.5px solid transparent; letter-spacing: 0.3px;
}
.btn-primary { background: var(--skrc-red); color: var(--white); }
.btn-primary:hover { background: var(--skrc-red-light); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.2); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--skrc-red); color: var(--skrc-red); }
/* Dark outline for light backgrounds */
.btn-outline-dark { border-color: rgba(0,0,0,0.2); color: var(--navy-800); background: transparent; }
.btn-outline-dark:hover { border-color: var(--skrc-red); color: var(--skrc-red); }

/* Watch Live button with pulsing dot */
.btn-live {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--skrc-red);
    position: relative;
    padding-left: 30px;
}
.btn-live::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--skrc-red);
    border-radius: 50%;
    animation: pulse-live 1.5s ease-in-out infinite;
}
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.btn-live:hover { background: var(--skrc-red); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-dark { background: var(--navy-800); }
.section-light { background: var(--gray-50); color: var(--navy-900); }
.section-navy { background: var(--navy-900); }
.section-header { margin-bottom: 48px; }
.section-tag {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; color: var(--skrc-red);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; letter-spacing: -1px; line-height: 1.1;
}
.section-light .section-title { color: var(--navy-900); }
.section-desc { font-size: 17px; color: var(--gray-400); margin-top: 12px; max-width: 640px; }
.section-light .section-desc { color: var(--gray-600); }

/* ============================================
   PAGE HERO (for sub-pages)
   ============================================ */
.page-hero {
    padding: 140px 0 64px;
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.page-hero .page-desc {
    font-size: 18px; color: var(--gray-400); max-width: 600px; line-height: 1.7;
}
.page-hero-deco {
    position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
    width: 45%; opacity: 0.03; pointer-events: none;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.card-light {
    background: var(--white);
    border: 1px solid var(--gray-100);
    color: var(--navy-900);
}
.card-light:hover {
    border-color: var(--gray-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-800); padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { color: var(--gray-500); margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer-title {
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--gray-400); font-size: 14px; transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px; color: var(--gray-500);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 72px 0; }
    .page-hero { padding: 120px 0 48px; }
    .page-hero h1 { letter-spacing: -1px; }
}

@media (max-width: 1250px) {
    .nav, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
}
