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

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-surface: #141414;
    --color-surface-light: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-dim: #666666;
    --color-red: #d91e18;
    --color-red-dark: #b51a15;
    --color-red-light: #ff3b30;
    --color-yellow: #ccff00;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-red);
    color: white;
    border-color: var(--color-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 30, 24, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: transform var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}

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

.nav-menu a:hover {
    color: white;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    padding: 8px 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
    color: white;
    text-shadow: 0 0 60px rgba(217, 30, 24, 0.5);
}

.hero-title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-red);
    margin-top: 12px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

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

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.6); opacity: 1; }
}

.speed-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.speed-lines span {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: speedLine 3s linear infinite;
}

.speed-lines span:nth-child(1) { top: 20%; animation-delay: 0s; }
.speed-lines span:nth-child(2) { top: 35%; animation-delay: 0.5s; }
.speed-lines span:nth-child(3) { top: 50%; animation-delay: 1s; }
.speed-lines span:nth-child(4) { top: 65%; animation-delay: 1.5s; }
.speed-lines span:nth-child(5) { top: 80%; animation-delay: 2s; }

@keyframes speedLine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* ===== Section Common ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.about-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 30, 24, 0.3);
    box-shadow: var(--shadow);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-red);
    border-radius: 4px;
    z-index: 0;
}

.about-story-content {
    padding: 20px 0;
}

.story-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-red);
    margin-bottom: 16px;
}

.about-story-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-story-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-red);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ===== Racing Section ===== */
.racing-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.racing-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.racing-card-reverse {
    direction: rtl;
}

.racing-card-reverse > * {
    direction: ltr;
}

.racing-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.racing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.6) 100%);
}

.racing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.racing-card:hover .racing-image img {
    transform: scale(1.05);
}

.racing-content {
    padding: 20px 0;
}

.racing-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    padding: 6px 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.racing-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.racing-content p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.racing-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.racing-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-red);
}

/* ===== Machine Section ===== */
.machine {
    background: var(--color-bg) !important;
    overflow: hidden;
}

.machine-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.machine-visual {
    position: relative;
}

.machine-visual img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.machine-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.machine-deco-text {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(217, 30, 24, 0.08);
    white-space: nowrap;
}

.machine-specs {
    padding: 20px 0;
}

.machine-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.machine-desc {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.specs-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(217, 30, 24, 0.1);
    border-left: 3px solid var(--color-red);
    border-radius: 0 4px 4px 0;
}

.note-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.specs-note p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===== Calendar Section ===== */
.calendar {
    background: var(--color-bg-alt) !important;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-red), rgba(217, 30, 24, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-red);
    border: 4px solid var(--color-bg-alt);
    box-shadow: 0 0 0 2px var(--color-red);
}

.timeline-item-crrc .timeline-marker {
    background: var(--color-yellow);
    box-shadow: 0 0 0 2px var(--color-yellow);
}

.timeline-content {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 32px;
    border-radius: 4px;
    transition: all var(--transition);
}

.timeline-content:hover {
    border-color: rgba(217, 30, 24, 0.3);
    transform: translateX(8px);
}

.timeline-round {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--color-red);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-item-crrc .timeline-round {
    color: var(--color-yellow);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.timeline-location {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-date {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline-class {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(217, 30, 24, 0.15);
    color: var(--color-red);
    border-radius: 2px;
}

.timeline-item-crrc .timeline-class {
    background: rgba(204, 255, 0, 0.1);
    color: var(--color-yellow);
}

/* ===== Sponsors Section ===== */
.sponsors-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

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

.sponsor-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
}

.sponsor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 30, 24, 0.3);
    box-shadow: var(--shadow);
}

.sponsor-icon {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(217, 30, 24, 0.3);
    margin-bottom: 20px;
    line-height: 1;
}

.sponsor-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.sponsor-card ul li {
    padding: 10px 0;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.sponsor-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.sponsor-cta {
    text-align: center;
}

/* ===== Contact Section ===== */
.contact-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.contact-visual {
    position: relative;
    min-height: 400px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.contact-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 30, 24, 0.6), rgba(10, 10, 10, 0.8));
}

.contact-visual-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.contact-visual-text span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.contact-visual-text h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
}

.contact-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-name {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    transition: color var(--transition);
}

.contact-phone:hover {
    color: var(--color-red);
}

.phone-icon {
    font-size: 1.5rem;
}

.contact-note {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-org {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-org span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-bottom: 4px;
}

.contact-org strong {
    font-weight: 500;
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

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

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid,
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story,
    .machine-layout,
    .racing-card,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .racing-card-reverse {
        direction: ltr;
    }

    .racing-card-reverse > * {
        direction: ltr;
    }

    .contact-visual {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title-main {
        letter-spacing: 0.02em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 80px 0;
    }

    .about-grid,
    .sponsors-grid,
    .sponsor-gallery,
    .specs-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }

    .story-stats {
        gap: 24px;
    }

    .timeline {
        padding-left: 30px;
    }

    .contact-info {
        padding: 40px 24px;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero-title-sub {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

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

    .about-card,
    .sponsor-card,
    .timeline-content {
        padding: 28px 24px;
    }
}
