
/* --- F1 PERFORMANCE STYLE (f1-2: Carbon & Neon) --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #bc13fe;
    --primary-hover: #a800ea;
    --primary-soft: rgba(188, 19, 254, 0.15);
    --primary-glow: rgba(188, 19, 254, 0.5);
    
    --bg-main: #050505;
    --bg-alt: #0a0a0a;
    --bg-card: rgba(25, 25, 25, 0.7);
    
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --text-dim: #606060;
    
    --accent: #e43bff;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --radius-sm: 2px;
    --radius-md: 0px; /* Sharp corners for F1 tech feel */
    --radius-lg: 0px;
    
    --transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
    --site-width: 1320px;
    
    --carbon-pattern: radial-gradient(circle, #151515 25%, transparent 26%), 
                      radial-gradient(circle, #151515 25%, transparent 26%),
                      linear-gradient(#101010 2px, transparent 2px),
                      linear-gradient(90deg, #101010 2px, transparent 2px);
}

* { box-sizing: border-box; scroll-behavior: smooth; margin: 0; padding: 0; }
html, body { 
    width: 100%; 
    overflow-x: hidden; 
    background-color: var(--bg-main); 
    background-image: 
        linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
        repeating-linear-gradient(45deg, #111 0, #111 2px, transparent 0, transparent 50%);
    background-size: cover, 10px 10px;
    color: var(--text-main); 
    font-family: var(--font-body); 
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-display); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
    font-style: italic;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; filter: grayscale(0.2); transition: var(--transition); }
img:hover { filter: grayscale(0); }

.container { max-width: var(--site-width); margin: 0 auto; padding: 0 30px; width: 100%; }

/* --- NAVIGATION --- */
.site-header { 
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(0, 0, 0, 0.9); 
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-text { 
    font-family: var(--font-display); font-size: 26px; font-weight: 900; 
    letter-spacing: 4px; color: #fff; font-style: italic;
    text-shadow: 2px 2px 0px var(--primary);
}
.nav-list { display: flex; gap: 40px; list-style: none; }
.nav-link { 
    font-size: 13px; font-weight: 700; color: #fff; 
    text-transform: uppercase; font-family: var(--font-display);
    position: relative; padding: 5px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

/* --- HERO --- */
.hero-section { 
    position: relative; min-height: 90vh; display: flex; align-items: center; 
    background-size: cover; background-position: center; overflow: hidden;
    padding: 100px 0; border-bottom: 10px solid var(--bg-alt);
}
.hero-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--bg-main) 0%, transparent 100%);
    z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-badge { 
    display: inline-block; background: var(--primary); color: #000;
    font-family: var(--font-display); font-weight: 900; font-style: italic;
    font-size: 12px; padding: 4px 12px; margin-bottom: 20px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.site-title { 
    font-size: clamp(3.5rem, 12vw, 9rem); line-height: 0.85; margin-bottom: 30px; 
    color: #fff; font-weight: 900; text-transform: uppercase; font-style: italic;
    letter-spacing: -2px;
}
.site-tagline { 
    font-size: 22px; color: var(--text-muted); max-width: 600px; margin-bottom: 50px; 
    border-left: 5px solid var(--primary); padding-left: 25px;
}

.hero-btns { display: flex; gap: 15px; }
.btn-primary { 
    background: var(--primary); color: #000; padding: 18px 45px; 
    font-family: var(--font-display); font-size: 18px; font-weight: 900;
    font-style: italic; border: none; cursor: pointer; transition: var(--transition);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.btn-primary:hover { transform: skewX(-5deg); background: #fff; box-shadow: 0 0 30px var(--primary-glow); }

.btn-secondary { 
    background: transparent; border: 2px solid #fff; color: #fff; 
    padding: 16px 43px; font-family: var(--font-display); font-size: 18px; font-weight: 900;
    font-style: italic; cursor: pointer; transition: var(--transition);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: skewX(-5deg); }

/* --- CONTENT CARDS --- */
.section-header { 
    margin-bottom: 60px; display: flex; align-items: flex-end; justify-content: space-between;
    border-bottom: 4px solid var(--bg-alt); padding-bottom: 20px;
}
.section-title-big { font-size: 56px; color: #fff; font-style: italic; line-height: 1; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 0; }

.article-card { 
    background: var(--bg-alt); border: 1px solid #1a1a1a; 
    transition: var(--transition); overflow: hidden;
    display: flex; flex-direction: column; position: relative;
}
.article-card:hover { 
    z-index: 10;
    background: #111;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 0 30px var(--primary-glow);
    border-color: var(--primary);
}
.article-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 4px;
    background: var(--primary); transition: var(--transition);
}
.article-card:hover::before { width: 100%; }

.card-img-wrapper { position: relative; overflow: hidden; height: 260px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.article-card:hover .card-img { transform: scale(1.05) rotate(1deg); }

.card-body { padding: 35px; flex: 1; display: flex; flex-direction: column; }
.card-meta { font-family: var(--font-display); color: var(--primary); font-size: 11px; font-weight: 700; margin-bottom: 15px; }
.card-title-link { font-family: var(--font-display); font-size: 26px; line-height: 1.1; margin-bottom: 20px; display: block; font-style: italic; }
.card-excerpt { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; font-weight: 400; }
.card-read-more { 
    margin-top: auto; display: inline-block;
    font-family: var(--font-display); font-size: 13px; color: var(--primary); font-weight: 900;
    text-transform: uppercase; font-style: italic;
}

/* --- SQUAD / TEAM --- */
.bg-dark-section { padding: 120px 0; background: #000; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.squad-card { 
    background: #0a0a0a; border: 1px solid #111; 
    overflow: hidden; position: relative; transition: var(--transition);
    padding: 20px; text-align: left;
}
.squad-card:hover { background: #111; border-color: var(--primary); }

.squad-img-container { 
    width: 100%; aspect-ratio: 1; margin-bottom: 20px;
    background: #151515; position: relative; overflow: hidden;
}
.squad-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.squad-card:hover .squad-img { filter: grayscale(0); transform: scale(1.1); }

.squad-no { 
    position: absolute; top: 10px; right: 20px; font-family: var(--font-display); 
    font-size: 80px; font-weight: 900; color: var(--primary); opacity: 0.05; font-style: italic;
}
.squad-name { font-family: var(--font-display); font-size: 28px; color: #fff; font-style: italic; margin-bottom: 5px; }
.squad-role { font-family: var(--font-body); color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

/* --- STATS --- */
.stat-card { 
    background: #0a0a0a; border-left: 4px solid var(--primary); padding: 40px;
    transition: var(--transition);
}
.stat-card:hover { background: #111; transform: translateX(10px); }
.stat-value { font-family: var(--font-display); font-size: 50px; font-weight: 900; color: #fff; font-style: italic; }
.stat-label { color: var(--primary); font-family: var(--font-display); font-size: 12px; font-weight: 700; }

/* --- FOOTER --- */
.site-footer { padding: 100px 0 50px; background: #000; border-top: 10px solid var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer-logo-text { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: #fff; font-style: italic; margin-bottom: 30px; }
.footer-title { font-family: var(--font-display); font-size: 14px; color: var(--primary); margin-bottom: 35px; letter-spacing: 3px; }
.footer-link { color: var(--text-muted); font-size: 15px; text-transform: uppercase; font-weight: 600; }
.footer-link:hover { color: #fff; letter-spacing: 1px; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .site-title { font-size: 5rem; }
}
@media (max-width: 768px) {
    .nav-list { display: none; }
    .grid-3 { grid-template-columns: 1fr; }
    .section-title-big { font-size: 40px; }
}
