* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --orange-500: #f97316;
    --green-600: #16a34a;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
}

.font-racing {
    font-family: 'Racing Sans One', cursive;
}

/* UCI Rainbow Stripe */
.uci-stripe {
    height: 4px;
    background: linear-gradient(90deg,
    #0033A0 0%, #0033A0 20%,
    #C8102E 20%, #C8102E 40%,
    #000000 40%, #000000 60%,
    #FFD100 60%, #FFD100 80%,
    #009639 80%, #009639 100%
    );
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.nav .scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.logo-text {
    line-height: 1.2;
}

.logo-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--gray-800);
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--red-600);
}

/* desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}


.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-600);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.btn-white {
    background: var(--white);
    color: var(--gray-800);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}


.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 22px;
    background: #111;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

/* mobile styles */
@media (max-width: 768px) {
    .btn-primary{
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav {
        z-index: 1000;
    }


    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;

        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;

        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links .nav-link,
    .nav-links .btn {
        width: 100%;
    }

    /* burger animation */
    .mobile-menu-btn.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-highlight {
    color: var(--amber-400);
    display: block;
}

.hero-date-boxes {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.date-box {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.date-box-primary {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: var(--white);
}

.date-box-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.date-box-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-box-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

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

.scroll-indicator-inner {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator-dot {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(10px);
    }
}

/* Section Styles */
.section {
    padding: 5rem 1.5rem;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gray-900);
    color: var(--white);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--red-600);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-label-light {
    color: var(--amber-400);
}

.section-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: var(--gray-800);
}

.section-title-light {
    color: var(--white);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Race Categories with Images */
.race-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .race-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.race-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.race-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.race-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.race-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.race-card:hover .race-card-image img {
    transform: scale(1.1);
}

.race-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.race-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
}

.race-badge-red {
    background: var(--red-600);
}

.race-badge-amber {
    background: var(--amber-500);
}

.race-badge-green {
    background: var(--green-600);
}

.race-card-content {
    padding: 1.5rem;
}

.race-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.race-stats {
    margin-bottom: 1.5rem;
}

.race-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.race-stat-label {
    color: var(--gray-500);
}

.race-stat-value {
    font-weight: 700;
    color: var(--gray-800);
}

.race-stat-unit {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Video Section */
.video-section {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.video-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.video-content {
    position: relative;
    z-index: 1;
}

.video-content h2 {
    font-family: 'Racing Sans One', cursive;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.video-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.video-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.video-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-placeholder:hover .video-placeholder-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--red-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: var(--red-700);
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    margin-left: 4px;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 1.5rem;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-text {
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 768px) {
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Stats Section */
.stats-section {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    color: var(--red-600);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Location Section with Map Image */
.location-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.location-grid {
    display: grid;
}

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

.location-image {
    position: relative;
    min-height: 400px;
}

.location-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 4rem 2rem;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .location-content {
        padding: 4rem 3rem;
    }
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.location-feature-text {
    font-weight: 500;
    color: var(--gray-700);
}

/* UCI Banner */
.uci-banner {
    background: var(--gray-800);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.uci-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1534787238916-9ba6764efd4f?auto=format&fit=crop&w=800&q=80') center/cover;
    opacity: 0.2;
}

.uci-banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .uci-banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.uci-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .uci-info {
        flex-direction: row;
    }
}

.uci-logo {
    width: 100px;
    height: 60px;
    background: var(--white);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.uci-logo-stripe {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,
    #0033A0 0%, #0033A0 20%,
    #C8102E 20%, #C8102E 40%,
    #000000 40%, #000000 60%,
    #FFD100 60%, #FFD100 80%,
    #009639 80%, #009639 100%
    );
    margin-bottom: 4px;
}

.uci-logo-text {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.uci-logo-subtext {
    font-size: 0.5rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.2;
}

.uci-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.uci-text p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

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

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

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-title-highlight {
    color: var(--red-600);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature-check {
    color: var(--green-600);
    font-weight: bold;
}


/* Testimonials */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: var(--amber-400);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-800);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-title {
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    margin-top: 1rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--red-600);
    color: var(--white);
}

.footer-heading {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-uci {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-uci-stripe {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg,
    #0033A0 0%, #0033A0 20%,
    #C8102E 20%, #C8102E 40%,
    #000000 40%, #000000 60%,
    #FFD100 60%, #FFD100 80%,
    #009639 80%, #009639 100%
    );
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sponsors Carousel */
.sponsors-carousel {
    background: var(--gray-50);
    padding: 5rem 0;
    overflow: hidden;
}

.sponsors-carousel-header {
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
}

.sponsors-carousel-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.sponsors-carousel-track {
    display: flex;
    gap: 4rem;
    /*animation: scroll 40s linear infinite;*/
    /*width: max-content;*/
}

/*.sponsors-carousel-track:hover {*/
/*    animation-play-state: paused;*/
/*}*/

/*@keyframes scroll {*/
/*    from {*/
/*        transform: translateX(0);*/
/*    }*/
/*    to {*/
/*        transform: translateX(-50%);*/
/*    }*/
/*}*/

.sponsor-logo-carousel {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.sponsor-logo-carousel:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.sponsor-logo-carousel img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.4s;
}

.sponsor-logo-carousel:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Registration Form Styles */
.registration-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 5rem 1.5rem;
}

.registration-container {
    max-width: 1280px;
    margin: 0 auto;
}

.registration-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .registration-grid {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}

.race-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.race-option {
    position: relative;
    cursor: pointer;
}

.race-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.race-option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.3s;
}

.race-option:hover .race-option-card {
    border-color: var(--gray-300);
}

.race-option input:checked + .race-option-card {
    border-color: var(--red-600);
    background: rgba(220, 38, 38, 0.05);
}

.race-option-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.race-option input:checked + .race-option-card .race-option-radio {
    border-color: var(--red-600);
    background: var(--red-600);
}

.race-option input:checked + .race-option-card .race-option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.race-option-info {
    flex: 1;
}

.race-option-name {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.race-option-details {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.race-option-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.race-option-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    border-radius: 9999px;
}

.registration-form-container {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .registration-form-container {
        padding: 3rem;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-label .required {
    color: var(--red-600);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
}

.form-input:hover {
    border-color: var(--gray-300);
}

.form-input:focus {
    outline: none;
    border-color: var(--red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--red-600);
}

.form-checkbox-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--red-600);
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.form-submit .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}