:root {
    --bg-main: #06080b;
    --bg-card: #0d1117;
    
    /* THEME: ORANGE / MAGMA */
    --neon: #ff4d00;      /* Primary Orange */
    --accent: #ff9d00;    /* Amber Accent for gradients */
    
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --border: #1e293b;
    --container-padding: 30px;
}

/* --- Base Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
body { background: var(--bg-main); color: var(--text-white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--container-padding); }

/* --- Navigation --- */
header { background: rgba(6, 8, 11, 0.95); backdrop-filter: blur(12px); padding: 15px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 2000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

.logo-text { font-weight: 900; font-size: 24px; letter-spacing: -1px; }
.logo-text span { color: var(--neon); }
.header-affiliation { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; margin-top: -4px; }
.header-affiliation a { color: var(--accent); text-decoration: none; }

.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-menu a { color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-menu a:hover { color: var(--neon); }

.nav-btn { background: var(--neon); color: #fff !important; padding: 8px 20px; border-radius: 4px; transition: 0.3s; white-space: nowrap; font-weight: 700; }
.nav-btn:hover { box-shadow: 0 0 15px rgba(255, 77, 0, 0.4); transform: translateY(-1px); background: #ff6a00; }

/* --- Hero Section --- */
.hero { 
    padding: 150px 0 120px; 
    min-height: 85vh; 
    display: flex;
    align-items: center;
    position: relative; 
    overflow: hidden; 
    background: linear-gradient(rgba(6, 8, 11, 0.9), rgba(6, 8, 11, 0.7)), 
                url('https://images.crashmedia.ca/images/2026/01/15/MCV_HOL25Drop_MoM_DotNet_Wallpaper_2560x1440.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.scanline { width: 100%; height: 100px; background: linear-gradient(0deg, transparent, rgba(255, 77, 0, 0.05), transparent); position: absolute; top: -100px; left: 0; pointer-events: none; animation: scan 8s linear infinite; }
@keyframes scan { 0% { top: -100px; } 100% { top: 100%; } }

.status-link { text-decoration: none; display: inline-block; margin-bottom: 25px; }
.status-indicator { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--neon); background: rgba(255, 77, 0, 0.05); padding: 8px 16px; border-radius: 4px; border: 1px solid var(--neon); transition: 0.3s; }
.status-link:hover .status-indicator { background: rgba(255, 77, 0, 0.15); box-shadow: 0 0 15px rgba(255, 77, 0, 0.2); transform: translateY(-2px); }
.dot { width: 8px; height: 8px; background: var(--neon); border-radius: 50%; box-shadow: 0 0 8px var(--neon); }

.hero h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.05; margin-bottom: 20px; font-weight: 900; }
.highlight { color: var(--neon); text-shadow: 0 0 40px rgba(255, 77, 0, 0.3); }
.hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-dim); max-width: 580px; margin-bottom: 40px; }

/* --- BUTTONS --- */
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; }

.btn-primary { 
    position: relative;
    background: var(--neon); 
    color: #fff; 
    padding: 16px 35px; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 4px; 
    display: inline-block; 
    transition: 0.4s ease; 
    text-align: center; 
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--neon), var(--accent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
}

.btn-secondary { 
    position: relative;
    color: #fff; 
    border: 1px solid var(--border); 
    padding: 16px 35px; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 4px; 
    display: inline-block; 
    transition: 0.4s ease; 
    text-align: center; 
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

.btn-secondary:hover { 
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 157, 0, 0.15);
}

/* --- Programs/Cards --- */
.games-section { padding: 80px 0; background: #080b0f; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 100%; transition: 0.3s ease; display: flex; flex-direction: column; }
.game-card:hover { border-color: var(--neon); transform: translateY(-5px); }
.card-img { height: 220px; background-size: cover; background-position: center; }
.card-body { padding: 25px; flex-grow: 1; }
.card-body h3 { margin-bottom: 10px; font-size: 1.4rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.tags span { font-size: 10px; background: rgba(255, 77, 0, 0.1); padding: 4px 8px; border-radius: 4px; color: var(--accent); font-weight: 800; text-transform: uppercase; }
.library-footer { text-align: center; margin-top: 40px; }
.library-footer a { color: var(--accent); text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }

/* --- Specs/Standards --- */
.specs-section { padding: 80px 0; }
.specs-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.eyebrow { color: var(--neon); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.specs-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 30px; line-height: 1.1; }
.spec-table { border-top: 1px solid var(--border); }
.spec-row { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.spec-label { color: var(--text-dim); }
.spec-value { color: #fff; font-weight: 700; text-align: right; }
.panel-card { background: linear-gradient(160deg, #111827, #06080b); padding: 40px; border-radius: 12px; border: 1px solid var(--border); text-align: center; }
.panel-card i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }

/* --- Footer --- */
.site-footer { background: #040608; padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-flex { display: flex; justify-content: space-between; padding-bottom: 60px; flex-wrap: wrap; gap: 40px; }
.footer-left { max-width: 400px; }
.footer-desc { color: var(--text-dim); margin: 20px 0 20px; font-size: 14px; }
.crash-link { color: var(--accent); text-decoration: none; font-weight: 700; }

.footer-col h4 { color: var(--neon); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-email-link { font-size: 1.2rem; font-weight: 700; color: #fff; text-decoration: none; transition: 0.3s; display: inline-block; word-break: break-all; } 
.footer-email-link:hover { color: var(--neon); }
.footer-col a:not(.footer-email-link) { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 10px; font-weight: 500; font-size: 14px; }
.footer-col a:hover { color: #fff; }

.footer-bottom { background: #020305; padding: 25px 0; color: #475569; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.footer-bottom-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #64748b; text-decoration: none; }

/* --- Mobile --- */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 20px; }
    .nav-menu { gap: 20px; width: 100%; justify-content: center; }
    .hero { 
        text-align: center; 
        padding: 80px 0; 
        min-height: 60vh;
        background-attachment: scroll; 
    }
    .hero p { margin: 0 auto 30px; }
    .status-link { margin: 0 auto 25px; }
    .hero-actions { justify-content: center; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }
    .specs-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-flex { flex-direction: column; text-align: center; }
    .footer-left { margin: 0 auto; }
    .footer-col { width: 100%; margin-bottom: 20px; }
    .footer-bottom-flex { flex-direction: column; text-align: center; gap: 15px; }
}