/* ===== JDM Performance Club - Main Stylesheet ===== */
/* Theme: Dark racing aesthetic with red accents */

/* --- CSS Variables --- */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #1a1a1a;
    --color-bg-hover: #222222;
    --color-text: #e8e8e8;
    --color-text-muted: #999999;
    --color-text-light: #cccccc;
    --color-primary: #E50000;
    --color-primary-dark: #B30000;
    --color-primary-light: #FF3333;
    --color-accent: #FF6B00;
    --color-gold: #D4AF37;
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    --font-main: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Noto Sans SC', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(229,0,0,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: #ffffff; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 2rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-top: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--color-text-light); }
table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { padding: 0.75rem 1rem; border: 1px solid var(--color-border); text-align: left; }
th { background: var(--color-bg-card); color: var(--color-primary-light); font-weight: 600; }
td { background: var(--color-bg-alt); }

.c0fa2c7ab { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Header & Navigation --- */
.cc127b119 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background var(--transition);
}
.cc127b119.scrolled { background: rgba(10,10,10,0.98); box-shadow: var(--shadow-md); }
.cbd3a29b4 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.c0a548457 { display: flex; align-items: baseline; gap: 0.5rem; }
.cfa7865db {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}
.cbd45561e {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    color: var(--color-primary);
    opacity: 0.8;
}
.c8fb70a98 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.c8fb70a98 li a {
    display: block;
    padding: 0.5rem 0.9rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.c8fb70a98 li a:hover, .c8fb70a98 li a.ce07d4cf2 {
    color: #fff;
    background: rgba(229,0,0,0.1);
}
.c75678571 {
    background: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
}
.c75678571:hover { background: var(--color-primary-dark) !important; }
.c1a555094 { font-size: 1.1rem !important; }
.c53e4e560 {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.c412b0d86 {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: var(--transition);
}
.c412b0d86::before, .c412b0d86::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: var(--transition);
}
.c412b0d86::before { top: -7px; }
.c412b0d86::after { top: 7px; }

/* --- Hero Section --- */
.c4ec4ff64 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}
.c36a47e45 {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.c36a47e45 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}
.c269f8aeb {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}
.c5f008c01 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}
.c5f008c01 h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.c5f008c01 h1 .text-red { color: var(--color-primary); }
.c5f008c01 p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    margin-bottom: 2rem;
}
.cfe749200 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.c0a693671 {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 2px solid var(--color-primary);
}
.c0a693671:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-glow);
    color: #fff;
    transform: translateY(-2px);
}
.cd6feb099 {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.cd6feb099:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* --- Section Styles --- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 0.5rem;
}
.section-title .jp-sub {
    font-family: var(--font-jp);
    font-size: 0.85rem;
    color: var(--color-primary);
    opacity: 0.7;
}
.section-title p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* --- Card Grid --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition);
}
.card:hover img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-body h3 { margin-top: 0; font-size: 1.1rem; }
.card-body p { font-size: 0.9rem; color: var(--color-text-muted); }
.card-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(229,0,0,0.15);
    color: var(--color-primary-light);
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

/* --- Home Sections --- */
.home-section {
    padding: 5rem 0;
    margin-top: 0;
}
.home-section:nth-child(even) { background: var(--color-bg-alt); }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item h3 { margin-top: 0; }

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 3rem 0;
}
.cd11536da { text-align: center; }
.ccb703d8e {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-mono);
}
.ca5bd7d4b { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* --- Page Hero --- */
.c2d39f0eb {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--color-bg) 0%, #1a0000 100%);
    border-bottom: 1px solid var(--color-border);
    margin-top: var(--header-height);
}
.c2d39f0eb h1 { margin-bottom: 0.5rem; }
.c952098c9 { color: var(--color-text-muted); font-size: 1.1rem; }
.c947cf38f {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

/* --- Page Content --- */
.ce16b9756 { padding: 3rem 0 5rem; }
.ce16b9756 h2 { border-left: 4px solid var(--color-primary); padding-left: 1rem; }
.c58ee9160 { margin-bottom: 3rem; padding: 2rem; background: var(--color-bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.c33fde234 { margin: 3rem 0; padding: 2rem; background: var(--color-bg-alt); border-radius: var(--radius-lg); border-left: 4px solid var(--color-accent); }
.c4b1c452a { margin: 3rem 0; }
.cbbc8c4ce { padding: 1.5rem; margin-bottom: 1rem; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.cbbc8c4ce h3 { margin-top: 0; font-size: 1rem; color: var(--color-primary-light); }
.cbbc8c4ce p { margin-bottom: 0; font-size: 0.9rem; }
.c5ed69b45 { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.c5ed69b45 ul { display: flex; flex-direction: column; gap: 0.5rem; }
.c5ed69b45 li a { display: block; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }

/* --- Category Grid --- */
.cc4e250d5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.c1464a9de {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.c1464a9de:hover { border-color: var(--color-primary); transform: translateY(-3px); }
.c1464a9de img { width: 100%; height: 180px; object-fit: cover; }
.c1464a9de h3, .c1464a9de p { padding: 0 1.25rem; }
.c1464a9de p { padding-bottom: 1.25rem; font-size: 0.9rem; }

/* --- ECU Stages --- */
.c0d288345 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.c03721b9f {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}
.c03721b9f:hover { border-color: var(--color-primary); }
.cbf825991 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}
.c3ff03ba8 { display: block; margin-top: 1rem; font-size: 1.2rem; font-weight: 700; color: var(--color-gold); }

/* --- Garage Grid --- */
.cc51b5ebf { display: grid; gap: 2rem; margin: 2rem 0; }
.c8e329740 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.c8e329740 img { width: 100%; height: 100%; object-fit: cover; min-height: 250px; }
.c7bb50f57 { padding: 2rem; }
.c48eabd8a { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.5rem 0 1rem; }
.c48eabd8a span { font-size: 0.8rem; color: var(--color-text-muted); padding: 0.2rem 0.6rem; background: var(--color-bg); border-radius: var(--radius-sm); }

/* --- Course Grid --- */
.c011f54c9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.ca461b29f {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.ca461b29f:hover { border-color: var(--color-primary); }
.ccae52fdd { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.ccae52fdd span { font-size: 0.8rem; color: var(--color-accent); padding: 0.2rem 0.6rem; background: rgba(255,107,0,0.1); border-radius: var(--radius-sm); }

/* --- News Grid --- */
.cd911fbf0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.ce2f064c8 {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.ce2f064c8:hover { border-color: var(--color-primary); }
.ce2f064c8 img { width: 100%; height: 200px; object-fit: cover; }
.ceb8bdb10 { padding: 1.5rem; }
.ceb8bdb10 time { font-size: 0.8rem; color: var(--color-text-muted); }
.ceb8bdb10 h3 { margin-top: 0.5rem; font-size: 1.1rem; }

/* --- Calendar --- */
.c93362591 { margin: 1.5rem 0; }
.c7c1a9d5d {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all var(--transition);
}
.c7c1a9d5d:hover { border-color: var(--color-primary); }
.cb3361a2d { font-weight: 700; color: var(--color-primary); min-width: 80px; font-family: var(--font-mono); }
.ca35df048 { color: var(--color-text-light); }

/* --- Topic Article --- */
.cfe62ce5a { padding-top: 2rem; }
.cf4af8503 { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.c0286c116 { max-width: 800px; }
.c0286c116 h2 { border-left: 4px solid var(--color-primary); padding-left: 1rem; }
.c0286c116 h3 { color: var(--color-accent); }
.c0286c116 p { font-size: 1rem; line-height: 1.8; }
.cf45c0c8a { overflow-x: auto; margin: 2rem 0; }

/* --- Detail Page --- */
.c27ce4c3f { padding: 6rem 0 4rem; margin-top: var(--header-height); }
.c286fa0a3 { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.cd8e1751b { max-width: 800px; margin: 2rem 0; }
.cd8e1751b p { font-size: 1rem; line-height: 1.8; }
.cd590c07a { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* --- Error Page --- */
.c479731bd { padding: 8rem 0; margin-top: var(--header-height); text-align: center; }
.c8d1053fe { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.cd5e0b7a5 { font-size: 6rem; font-weight: 900; color: var(--color-primary); font-family: var(--font-mono); }
.ca89917d7 { width: 80px; height: 80px; animation: spin 3s linear infinite; }
.c439e1357 { fill: none; stroke: var(--color-text-muted); stroke-width: 8; }
.c54695acd { fill: none; stroke: var(--color-border-light); stroke-width: 4; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.caf0f41c4 { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.c593447d0 { margin-top: 3rem; }
.c593447d0 ul { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }

/* --- Search Page --- */
.cfc85b6e1 { padding: 8rem 0 4rem; margin-top: var(--header-height); }
.cb1948edf { max-width: 600px; margin: 2rem auto; }
.c2af404a9 {
    display: flex;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.c2af404a9:focus-within { border-color: var(--color-primary); }
#searchInput {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-bg-card);
    border: none;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
}
.ca013bbf5 {
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
}
.ca013bbf5:hover { background: var(--color-primary-dark); }
.c8e84a941 { text-align: center; margin: 2rem 0; }
.c3613ce7f { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.c7b250dc8 {
    padding: 0.4rem 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: all var(--transition);
}
.c7b250dc8:hover { border-color: var(--color-primary); color: var(--color-primary-light); }
.c74a194dd { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 1rem; }
.c049cca53 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    transition: all var(--transition);
}
.c049cca53:hover { border-color: var(--color-primary); color: #fff; }
.cc3b5b224 { font-size: 1.5rem; }

/* --- APP Download Page --- */
.c473abf80 { padding: 8rem 0 4rem; margin-top: var(--header-height); }
.c7d240359 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.c362de8b1 { font-size: 1.3rem; color: var(--color-text-muted); margin-bottom: 2rem; }
.c7071f8e4 { margin-bottom: 2rem; }
.c7071f8e4 li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--color-text-light); }
.c7071f8e4 li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.c265021c9 { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.c18df6285 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: #fff;
    transition: all var(--transition);
}
.c18df6285:hover { border-color: var(--color-primary); color: #fff; }
.c6cb5a126 { font-size: 1.5rem; }
.cdaf56e51 small { display: block; font-size: 0.65rem; color: var(--color-text-muted); }
.cdaf56e51 { font-size: 1rem; font-weight: 600; line-height: 1.2; }
.ce743d7f7 {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.8rem;
}
.c398bd5f0 {
    max-width: 280px;
    margin: 0 auto;
    border: 8px solid #333;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cb89050b6 img { width: 100%; height: 500px; object-fit: cover; }
.c63451fe0 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 4rem 0; padding: 3rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.cc7e52533 { margin-top: 2rem; }

/* --- Legal Pages --- */
.cd14d995b { padding: 6rem 0 4rem; margin-top: var(--header-height); }
.cd14d995b h1 { margin-bottom: 2rem; }
.cd14d995b h2 { font-size: 1.3rem; border-left: 4px solid var(--color-primary); padding-left: 1rem; }
.cd14d995b ul { margin: 1rem 0; padding-left: 1.5rem; }
.cd14d995b li { padding: 0.3rem 0; color: var(--color-text-light); position: relative; padding-left: 1rem; }
.cd14d995b li::before { content: '•'; position: absolute; left: 0; color: var(--color-primary); }

/* --- Breadcrumb --- */
.c6e85596e {
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.c6e85596e a { color: var(--color-text-muted); }
.c6e85596e a:hover { color: var(--color-primary-light); }
.c6e85596e span { margin: 0 0.3rem; }

/* --- Footer --- */
.cab22816a {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}
.c811b937e {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.c7f8d733b { font-size: 1.3rem; font-weight: 900; color: #fff; display: block; margin-bottom: 0.5rem; }
.c28d8938c p { color: var(--color-text-muted); font-size: 0.9rem; }
.c909175ae h4 { color: #fff; font-size: 0.9rem; margin-bottom: 1rem; }
.c909175ae ul { display: flex; flex-direction: column; gap: 0.5rem; }
.c909175ae a { color: var(--color-text-muted); font-size: 0.85rem; }
.c909175ae a:hover { color: var(--color-primary-light); }
.c84100247 { padding-top: 2rem; border-top: 1px solid var(--color-border); text-align: center; }
.c84100247 p { font-size: 0.8rem; color: var(--color-text-muted); }

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-primary-dark); transform: translateY(-3px); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .c53e4e560 { display: block; }
    .c8fb70a98 {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    .c8fb70a98.ce07d4cf2 { transform: translateX(0); }
    .c8fb70a98 li a { font-size: 1.1rem; padding: 0.75rem 1rem; }
    .c5f008c01 h1 { font-size: 1.8rem; }
    .c8e329740 { grid-template-columns: 1fr; }
    .c7d240359 { grid-template-columns: 1fr; }
    .c63451fe0 { grid-template-columns: repeat(2, 1fr); }
    .c811b937e { grid-template-columns: 1fr; gap: 2rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .c2d39f0eb { padding: 6rem 0 2rem; }
}

@media (max-width: 480px) {
    .cfe749200 { flex-direction: column; align-items: center; }
    .c0a693671, .cd6feb099 { width: 100%; text-align: center; }
    .card-grid { grid-template-columns: 1fr; }
    .c0d288345 { grid-template-columns: 1fr; }
    .c011f54c9 { grid-template-columns: 1fr; }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* --- Dyno Section --- */
.cdc9742b9 { margin: 3rem 0; }
.cdc9742b9 img { border-radius: var(--radius-lg); margin: 1.5rem 0; }

/* --- Structured Data Visibility --- */
.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;
}
