/* ============================================
   {SITE_TITLE} - 日系JDM性能改装与合法街道竞技俱乐部
   全站样式表 - Mobile First响应式设计
   ============================================ */

/* CSS Variables - 5色规范 */
:root {
    --color-primary: #E63946;       /* 转速表红 */
    --color-secondary: #2B2D42;     /* 碳纤维深灰 */
    --color-bg: #1A1A2E;            /* 赛道沥青黑 */
    --color-card: rgba(43,45,66,0.85); /* 半透明烟熏灰 */
    --color-text: #EDF2F4;          /* 仪表盘冷白 */
    --color-primary-dark: #C62828;
    --color-primary-light: #FF5252;
    --font-heading: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-hover: 0 16px 48px rgba(230,57,70,0.2);
    --border-radius: 12px;
    --max-width: 1400px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-primary-light);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1rem;
    color: rgba(237,242,244,0.85);
}

/* Container */
.c9e6327f4 {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.ccf29c52f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(230,57,70,0.2);
    transition: var(--transition-fast);
}

.ccf29c52f.scrolled {
    background: rgba(26,26,46,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.c41acb749 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.c0ffe8bb4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.c0ffe8bb4 .c1aa08826 {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
}

.cf39177af {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cf39177af a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.cf39177af a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.cf39177af a:hover::after,
.cf39177af a.c780603d9::after {
    width: 100%;
}

.c55d1435c {
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.c55d1435c:hover {
    background: var(--color-primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
}

/* Mobile Menu Toggle */
.ce6e09870 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.ce6e09870 span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section - 引擎咆哮
   ============================================ */
.c1ae2f63d {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video,
.hero-video-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c170b20da {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.c0228971a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26,26,46,0.4) 0%,
        rgba(26,26,46,0.6) 50%,
        rgba(26,26,46,0.9) 100%
    );
    z-index: 2;
}

.c6a110ea8 {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.c25da403d {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
}

.ca4c0a0f9 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(230,57,70,0.3), inset 0 0 30px rgba(230,57,70,0.1);
}

.c81a7d85b {
    width: 4px;
    height: 70px;
    background: var(--color-primary);
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    border-radius: 2px;
    animation: needleSweep 3s ease-in-out forwards;
}

@keyframes needleSweep {
    0% { transform: translateX(-50%) rotate(-90deg); }
    100% { transform: translateX(-50%) rotate(120deg); }
}

.c7f649526 {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 15px rgba(230,57,70,0.5);
}

.c3e1f2904 {
    position: absolute;
    bottom: 30px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
}

.c1ae2f63d h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.5s both;
}

.c1ae2f63d h1 span {
    color: var(--color-primary);
    display: inline-block;
}

.c08c9d9aa {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(237,242,244,0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.cfb21e9b9 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    animation: fadeInUp 1s ease 1.1s both;
    text-decoration: none;
}

.cfb21e9b9:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230,57,70,0.4);
    color: #fff;
}

.cf65506d3 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.cf65506d3 span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(237,242,244,0.5);
    border-radius: 15px;
    position: relative;
}

.cf65506d3 span::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Section Common Styles
   ============================================ */
.c6ffe9a43 {
    padding: 100px 0;
    position: relative;
}

.caab10eba {
    text-align: center;
    margin-bottom: 60px;
}

.caab10eba h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.caab10eba h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.caab10eba p {
    font-size: 1.1rem;
    color: rgba(237,242,244,0.7);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============================================
   Stats Section - 硬核数据
   ============================================ */
.c610c3b92 {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg) 100%);
    border-top: 1px solid rgba(230,57,70,0.2);
    border-bottom: 1px solid rgba(230,57,70,0.2);
}

.c6e43b02e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.c6529263b {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.ccc3b76f5 {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    border: 3px solid rgba(230,57,70,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,46,0.5);
}

.ce13ebd32 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
}

.c8664602e {
    font-size: 1rem;
    color: rgba(237,242,244,0.7);
    margin-top: 10px;
}

.cbffb5df5 {
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* Partner Logos */
.c923e1912 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(237,242,244,0.1);
}

.c923e1912 span {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(237,242,244,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-fast);
}

.c923e1912 span:hover {
    color: var(--color-primary);
}

/* ============================================
   Services Section - 改装菜单
   ============================================ */
.c2ecbd62c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.c66abdc19 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(237,242,244,0.05);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.c66abdc19::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.c66abdc19:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230,57,70,0.3);
}

.c66abdc19:hover::before {
    opacity: 1;
}

.cb1163f1a {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.cb1163f1a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c66abdc19 h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.c66abdc19 p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.c1b404d0b {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================
   Cases Section - 战绩展厅
   ============================================ */
.c70fdbf2a {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.c8eac7cd5 {
    padding: 10px 24px;
    border: 1px solid rgba(230,57,70,0.5);
    border-radius: 30px;
    background: transparent;
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.c8eac7cd5:hover,
.c8eac7cd5.c780603d9 {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.ce2c81207 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.cd8c73a0a {
    background: var(--color-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(237,242,244,0.05);
    transition: var(--transition-medium);
}

.cd8c73a0a:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.cd8c73a0a:hover .c7722c062 img {
    transform: scale(1.05) translateY(5px);
}

.c7722c062 {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.c7722c062 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.c6243d388 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cba054bc9 {
    padding: 25px;
}

.cba054bc9 h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cd655a389 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.c1c4fa1aa {
    text-align: center;
}

.ca0714a94 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.c2984c68a {
    font-size: 0.75rem;
    color: rgba(237,242,244,0.6);
}

/* ============================================
   Comparison Section - 原厂VS改装
   ============================================ */
.c1db75c45 {
    background: linear-gradient(135deg, rgba(43,45,66,0.5) 0%, var(--color-bg) 100%);
}

.c99987d05 {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ca3a16cbc {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.c4663ff7c,
.c0c9bfcbc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c4663ff7c {
    z-index: 1;
}

.c0c9bfcbc {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.c4663ff7c img,
.c0c9bfcbc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c617f6c0e {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.c617f6c0e::after {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(230,57,70,0.5);
}

.c85692a8f {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background: var(--color-card);
}

.c0f8cdfd7 {
    text-align: center;
}

.c0f8cdfd7 h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.c0f8cdfd7 p {
    font-size: 0.85rem;
    color: rgba(237,242,244,0.6);
}

/* ============================================
   CTA Section - 点火启动
   ============================================ */
.cd52324b8 {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-bg) 100%);
    text-align: center;
}

.c25188e75 {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    border: 1px solid rgba(230,57,70,0.2);
    box-shadow: var(--shadow-card);
}

.c68bcecd0 {
    margin-bottom: 25px;
    text-align: left;
}

.c68bcecd0 label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(237,242,244,0.8);
    font-weight: 500;
}

.c68bcecd0 input,
.c68bcecd0 select,
.c68bcecd0 textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(26,26,46,0.8);
    border: 1px solid rgba(237,242,244,0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.c68bcecd0 input:focus,
.c68bcecd0 select:focus,
.c68bcecd0 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.c68bcecd0 textarea {
    min-height: 120px;
    resize: vertical;
}

.cdb9c42b2 {
    width: 100%;
    padding: 18px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cdb9c42b2:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230,57,70,0.4);
}

.cdb9c42b2 .cb966f473 {
    font-size: 1.5rem;
    animation: rotate 2s linear infinite;
    animation-play-state: paused;
}

.cdb9c42b2:hover .cb966f473 {
    animation-play-state: running;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Success Animation */
.cc5882210 {
    display: none;
    text-align: center;
    padding: 40px;
}

.cc5882210.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.cc5882210 .cffd3bfe1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* ============================================
   Footer
   ============================================ */
.c9c35c5a4 {
    background: rgba(26,26,46,0.95);
    border-top: 1px solid rgba(230,57,70,0.2);
    padding: 60px 0 30px;
}

.cef3376dd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.cd5a39004 h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.cd5a39004 p {
    font-size: 0.9rem;
    color: rgba(237,242,244,0.6);
    line-height: 1.8;
}

.cd5a39004 ul li {
    margin-bottom: 10px;
}

.cd5a39004 ul li a {
    color: rgba(237,242,244,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.cd5a39004 ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.cf8110892 {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(237,242,244,0.1);
}

.cf8110892 p {
    font-size: 0.85rem;
    color: rgba(237,242,244,0.4);
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.c00a2c6c7 {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.c00a2c6c7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(230,57,70,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size: 200px;
}

.c00a2c6c7 h1 {
    position: relative;
    margin-bottom: 15px;
}

.c00a2c6c7 .c5c271769 {
    position: relative;
    font-size: 0.9rem;
    color: rgba(237,242,244,0.6);
}

.c00a2c6c7 .c5c271769 a {
    color: rgba(237,242,244,0.6);
}

.c00a2c6c7 .c5c271769 a:hover {
    color: var(--color-primary);
}

/* ============================================
   Content Cards & Lists
   ============================================ */
.cec400b6b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.c3fea733d {
    background: var(--color-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(237,242,244,0.05);
    transition: var(--transition-medium);
}

.c3fea733d:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.c6aac981c {
    height: 220px;
    overflow: hidden;
}

.c6aac981c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.c3fea733d:hover .c6aac981c img {
    transform: scale(1.08);
}

.cada9fa09 {
    padding: 25px;
}

.cada9fa09 h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.cada9fa09 p {
    font-size: 0.9rem;
    color: rgba(237,242,244,0.7);
    margin-bottom: 15px;
}

.c95b7ae16 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(237,242,244,0.5);
}

/* ============================================
   Interactive Components
   ============================================ */

/* Component A: 3D Car Showcase */
.cd91c771e {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(230,57,70,0.2);
}

.c3136e5b0 {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto 30px;
    position: relative;
    background: radial-gradient(circle at center, rgba(230,57,70,0.1) 0%, transparent 70%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    overflow: hidden;
}

.c3136e5b0:active {
    cursor: grabbing;
}

.c3136e5b0 img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.1s linear;
}

.c89689531 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.c3c2536d4 {
    padding: 10px 20px;
    background: rgba(230,57,70,0.1);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.c3c2536d4:hover,
.c3c2536d4.c780603d9 {
    background: var(--color-primary);
    color: #fff;
}

/* Component B: Configurator */
.c54bce389 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(230,57,70,0.2);
}

.cd72fee0f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.cb0040bc8 {
    text-align: center;
}

.cb0040bc8 h4 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.c897650fa {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c1dc1c45d {
    padding: 12px 20px;
    background: rgba(26,26,46,0.8);
    border: 1px solid rgba(237,242,244,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    color: var(--color-text);
}

.c1dc1c45d:hover,
.c1dc1c45d.selected {
    border-color: var(--color-primary);
    background: rgba(230,57,70,0.1);
}

.cffca13a1 {
    background: rgba(26,26,46,0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(230,57,70,0.3);
}

.cffca13a1 h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Component C: Leaderboard */
.c35b3f7bb {
    background: var(--color-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(230,57,70,0.2);
}

.c8996b617 {
    background: rgba(230,57,70,0.1);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.c72956ac5 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.c72956ac5 select {
    padding: 8px 16px;
    background: rgba(26,26,46,0.8);
    border: 1px solid rgba(237,242,244,0.2);
    border-radius: 6px;
    color: var(--color-text);
    font-size: 0.85rem;
}

.cefa58239 {
    width: 100%;
    border-collapse: collapse;
}

.cefa58239 th,
.cefa58239 td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(237,242,244,0.05);
}

.cefa58239 th {
    background: rgba(26,26,46,0.5);
    font-size: 0.85rem;
    color: rgba(237,242,244,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cefa58239 tr:hover {
    background: rgba(230,57,70,0.05);
}

.c8d2d2226 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.cb2867412 { background: #FFD700; color: #000; }
.c4605f0ef { background: #C0C0C0; color: #000; }
.c7669bf82 { background: #CD7F32; color: #fff; }

/* Component D: Legal Checker */
.c61847cb7 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(230,57,70,0.2);
}

.cedada779 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ced9ec898 {
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.ced9ec898.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.ced9ec898.pass {
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
}

.ced9ec898.fail {
    background: rgba(244,67,54,0.1);
    border: 1px solid rgba(244,67,54,0.3);
}

/* ============================================
   Video Component
   ============================================ */
.ca043a34d {
    position: relative;
    overflow: hidden;
}

.ca4bd07ed {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ca4bd07ed video {
    width: 100%;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230,57,70,0.5);
}

/* ============================================
   404 Page
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-404::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.85);
}

.page-404-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.page-404 h1 {
    font-size: clamp(5rem, 15vw, 12rem);
    color: var(--color-primary);
    text-shadow: 0 0 50px rgba(230,57,70,0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.page-404 h2 {
    margin-bottom: 20px;
}

.page-404 p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ============================================
   Animations & Scroll Effects
   ============================================ */
.c009dec9b {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.c009dec9b.c780603d9 {
    opacity: 1;
    transform: translateY(0);
}

.c565cf8a6 {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.c565cf8a6.c780603d9 {
    opacity: 1;
    transform: translateX(0);
}

.c4243630f {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.c4243630f.c780603d9 {
    opacity: 1;
    transform: translateX(0);
}

/* Gear Shift Transition */
.section-shift {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */
@media (max-width: 768px) {
    .cf39177af {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26,26,46,0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        border-bottom: 1px solid rgba(230,57,70,0.2);
    }

    .cf39177af.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .ce6e09870 {
        display: flex;
    }

    .c25da403d {
        width: 150px;
        height: 150px;
    }

    .c81a7d85b {
        height: 50px;
    }

    .c6ffe9a43 {
        padding: 60px 0;
    }

    .c6e43b02e {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ce2c81207 {
        grid-template-columns: 1fr;
    }

    .cec400b6b {
        grid-template-columns: 1fr;
    }

    .ca3a16cbc {
        height: 300px;
    }

    .c25188e75 {
        padding: 30px 20px;
    }

    .cef3376dd {
        grid-template-columns: 1fr;
    }

    .c3136e5b0 {
        height: 250px;
    }

    .cefa58239 {
        font-size: 0.8rem;
    }

    .cefa58239 th,
    .cefa58239 td {
        padding: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ce2c81207 {
        grid-template-columns: repeat(2, 1fr);
    }

    .c6e43b02e {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .c9e6327f4 {
        padding: 0 40px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.c1ed8644a { text-align: center; }
.text-primary { color: var(--color-primary); }
.ce4ab4ef1 { margin-top: 20px; }
.cdee0741a { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.c2c9bd18b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 1rem;
}
.c2c9bd18b:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    color: #fff;
}
.caa7d3643 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 1rem;
}
.caa7d3643:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}
