/* ============================================
   {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 */
.cfefa5bc1 {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.c24dff142 {
    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);
}

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

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

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

.ca21e44fa .c872a0700 {
    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); }
}

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

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

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

.c480ba3d7 a:hover::after,
.c480ba3d7 a.cc5268d41::after {
    width: 100%;
}

.c25dbf865 {
    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);
}

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

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

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

/* ============================================
   Hero Section - 引擎咆哮
   ============================================ */
.cb056d2f5 {
    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;
}

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

.c111f2527 {
    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;
}

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

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

.ccf397451 {
    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);
}

.cc4f06e2e {
    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); }
}

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

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

.cb056d2f5 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;
}

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

.c8982bfc0 {
    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;
}

.c16ea4b91 {
    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;
}

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

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

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

.c9b3e4ced 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
   ============================================ */
.c4c6b0955 {
    padding: 100px 0;
    position: relative;
}

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

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

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

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

/* ============================================
   Stats Section - 硬核数据
   ============================================ */
.c9ada20ca {
    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);
}

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

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

.c18dc438b {
    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);
}

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

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

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

/* Partner Logos */
.c1d2b0328 {
    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);
}

.c1d2b0328 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);
}

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

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

.caae60b50 {
    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;
}

.caae60b50::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);
}

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

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

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

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

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

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

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

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

.c8755490e {
    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);
}

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

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

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

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

.c1f090d0a:hover .cc998f105 img {
    transform: scale(1.05) translateY(5px);
}

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

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

.c2c9df309 {
    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;
}

.c88b6f8b3 {
    padding: 25px;
}

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

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

.cdaf55825 {
    text-align: center;
}

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

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

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

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

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

.c09ea98fc,
.c61a2a07b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c09ea98fc {
    z-index: 1;
}

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

.c09ea98fc img,
.c61a2a07b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.c18fe7897::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);
}

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

.cfae6eb03 {
    text-align: center;
}

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

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

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

.c8c84ecae {
    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);
}

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

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

.ce1f8ca9e input,
.ce1f8ca9e select,
.ce1f8ca9e 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);
}

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

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

.cb0b713f7 {
    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;
}

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

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

.cb0b713f7:hover .c8d2ab29d {
    animation-play-state: running;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8cfc8ae3::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;
}

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

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

.c8cfc8ae3 .cb2c35923 a {
    color: rgba(237,242,244,0.6);
}

.c8cfc8ae3 .cb2c35923 a:hover {
    color: var(--color-primary);
}

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

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

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

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

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

.cbbe1b027:hover .c5ef54b76 img {
    transform: scale(1.08);
}

.c514d3c48 {
    padding: 25px;
}

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

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

.cd4590946 {
    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 */
.c350417b8 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(230,57,70,0.2);
}

.c3ed267fc {
    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;
}

.c3ed267fc:active {
    cursor: grabbing;
}

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

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

.cba7dbe54 {
    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);
}

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

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

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

.c0458fc41 {
    text-align: center;
}

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

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

.c35140366 {
    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);
}

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

.c9f671fc4 {
    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);
}

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

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

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

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

.c75bb191a 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;
}

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

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

.c583a248a 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;
}

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

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

.c58cc093a { background: #FFD700; color: #000; }
.cf85c6b33 { background: #C0C0C0; color: #000; }
.c8b230436 { background: #CD7F32; color: #fff; }

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

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

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

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

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

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

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

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

.c8e6b68a2 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
   ============================================ */
.c00a3e260 {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.c00a3e260.cc5268d41 {
    opacity: 1;
    transform: translateY(0);
}

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

.c80155743.cc5268d41 {
    opacity: 1;
    transform: translateX(0);
}

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

.c1bb722a5.cc5268d41 {
    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) {
    .c480ba3d7 {
        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);
    }

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

    .c9cf7e60a {
        display: flex;
    }

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

    .cc4f06e2e {
        height: 50px;
    }

    .c4c6b0955 {
        padding: 60px 0;
    }

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

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

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

    .c817a20dd {
        height: 300px;
    }

    .c8c84ecae {
        padding: 30px 20px;
    }

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

    .c3ed267fc {
        height: 250px;
    }

    .c583a248a {
        font-size: 0.8rem;
    }

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

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

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

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

/* ============================================
   Utility Classes
   ============================================ */
.c40166a18 { text-align: center; }
.text-primary { color: var(--color-primary); }
.c7d6d9176 { margin-top: 20px; }
.c5ad22156 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.ce3902bdd {
    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;
}
.ce3902bdd:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    color: #fff;
}
.cb1783a5f {
    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;
}
.cb1783a5f: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);
}
