/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff0000;
    --gray: #666666;
    --light-gray: #f5f5f5;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background:
        linear-gradient(180deg,
            #000000 0%,
            #0a0a0a 10%,
            #1a0000 20%,
            #0d0d0d 30%,
            #1a0505 40%,
            #0d0d0d 50%,
            #1a0000 60%,
            #0a0a0a 70%,
            #050505 85%,
            #000000 100%
        );
    background-attachment: fixed;
    background-size: 100% 100%;
    color: var(--secondary-color);
    overflow-x: hidden;
    cursor: auto;
    position: relative;
}

/* Animated racing grid overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(255, 0, 0, 0.03) 25%, rgba(255, 0, 0, 0.03) 26%, transparent 27%, transparent 74%, rgba(255, 0, 0, 0.03) 75%, rgba(255, 0, 0, 0.03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 0, 0.03) 25%, rgba(255, 0, 0, 0.03) 26%, transparent 27%, transparent 74%, rgba(255, 0, 0, 0.03) 75%, rgba(255, 0, 0, 0.03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Diagonal racing stripes */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255, 0, 0, 0.02) 100px,
        rgba(255, 0, 0, 0.02) 200px
    );
    pointer-events: none;
    z-index: 1;
    animation: stripeMove 30s linear infinite;
}

@keyframes stripeMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Radial glow effects */
.page-glow {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.page-glow::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 15s ease-in-out infinite;
}

.page-glow::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 20s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.8;
    }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 10000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    background: transparent;
}

.hero-text {
    background: transparent;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    color: var(--accent-color);
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
    background: transparent;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    color: var(--gray);
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--gray);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

.cta-button:hover::before {
    left: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--gray);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* ===========================
   INTERACTIVE REVEAL SECTION
   =========================== */
.reveal-section {
    padding: 6rem 2rem;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.reveal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reveal-instruction {
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: 1rem;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.reveal-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.reveal-image-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #222;
    transition: border-color 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.reveal-image-wrapper:hover {
    border-color: var(--accent-color);
}

.reveal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.base-image {
    z-index: 2;
    opacity: 1;
    transition: opacity 0s;
}

.hood-open-image {
    z-index: 1;
    opacity: 1;
}

/* Instant hood reveal - no transition */
.reveal-container.hood-revealed .base-image {
    opacity: 0;
}

.reveal-container:not(.hood-revealed) .base-image {
    opacity: 1;
}

/* Add a flash effect during instant reveal */
.reveal-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.reveal-container.transitioning .reveal-image-wrapper::after {
    opacity: 1;
}

.reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reveal-container.hood-revealed .reveal-overlay {
    opacity: 0;
}

.reveal-text {
    text-align: center;
}

.reveal-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 8px;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.reveal-subtitle {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.power-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-color);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    transform: scale(1);
    transition: all 0.3s ease;
}

.reveal-container.hood-revealed .power-badge {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.badge-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.reveal-status {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.status-text {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.reveal-container.hood-revealed .status-text {
    color: var(--accent-color);
}

/* ===========================
   SPECS SECTION
   =========================== */
.specs-section {
    padding: 8rem 4rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.specs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.specs-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
}

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

.spec-card {
    background: linear-gradient(135deg, rgba(13, 0, 0, 0.4) 0%, rgba(10, 0, 0, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.5) 0%, rgba(13, 0, 0, 0.4) 100%);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.1);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spec-icon-svg {
    width: 3rem;
    height: 3rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon-svg {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
    transform: scale(1.1);
}

.spec-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.spec-description {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===========================
   BUILD LIST SECTION
   =========================== */
.build-list-section {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(13, 0, 0, 0.4) 0%, rgba(10, 0, 0, 0.3) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.build-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.build-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.build-subtitle {
    text-align: center;
    color: #ff4444;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    font-weight: 300;
    text-transform: uppercase;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .build-grid {
        grid-template-columns: 1fr;
    }
}

.build-category {
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.6) 0%, rgba(13, 0, 0, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 0, 0.1);
    background-clip: padding-box;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.build-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.build-category:hover::before {
    opacity: 1;
}

.build-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(255, 0, 0, 0.2),
        0 0 60px rgba(255, 0, 0, 0.1),
        inset 0 0 40px rgba(255, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid rgba(255, 0, 0, 0.3);
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { width: 60px; }
    50% { width: 120px; }
}

.category-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.category-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.build-list {
    list-style: none;
}

.build-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem 1rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.build-item::before {
    content: '▸';
    position: absolute;
    left: -1.5rem;
    color: #ff0000;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.build-item:hover {
    background: rgba(255, 0, 0, 0.08);
    border-left-color: #ff0000;
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.build-item:hover::before {
    opacity: 1;
    left: 0.5rem;
}

.item-name {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.item-detail {
    color: #999;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    font-weight: 300;
}

.item-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 0, 0, 0.6); }
}

.build-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.feature-item {
    background: linear-gradient(135deg, rgba(13, 0, 0, 0.4) 0%, rgba(10, 0, 0, 0.3) 100%);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.5) 0%, rgba(13, 0, 0, 0.4) 100%);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
}

.feature-text {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.interior-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.5) 0%, rgba(13, 0, 0, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 0, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.interior-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0000, transparent, #ff0000);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interior-section:hover::before {
    opacity: 0.3;
}

.interior-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.interior-item {
    background: linear-gradient(135deg, rgba(13, 0, 0, 0.3) 0%, rgba(10, 0, 0, 0.2) 100%);
    border: 2px solid rgba(255, 0, 0, 0.12);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: #ccc;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.interior-item::before {
    content: '◆';
    position: absolute;
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ff0000;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.interior-item:hover {
    color: var(--secondary-color);
    border-color: rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(20, 5, 5, 0.4) 0%, rgba(13, 0, 0, 0.3) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    padding-top: 2rem;
}

.interior-item:hover::before {
    opacity: 1;
}

/* ===========================
   QUOTE SECTION
   =========================== */
.quote-section {
    padding: 8rem 4rem;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.quote-author {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 8rem 4rem;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.contact-info {
    margin-top: 3rem;
}

.contact-link {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 3rem 4rem;
    background: transparent;
    text-align: center;
    border-top: 1px solid #222;
    position: relative;
    z-index: 10;
}

.footer-content p {
    color: var(--gray);
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .reveal-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .reveal-subtitle {
        font-size: 1rem;
    }

    .reveal-image-wrapper {
        height: 60vh;
    }

    .power-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .quote {
        font-size: 2rem;
    }

    .specs-section,
    .quote-section,
    .contact-section,
    .reveal-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 2px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    .reveal-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .reveal-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .reveal-image-wrapper {
        height: 50vh;
    }

    .power-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.8rem 1.2rem;
    }

    .badge-number {
        font-size: 1.8rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .status-text {
        font-size: 1rem;
    }
}
