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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ============================================================================ */
/* GRID LINES OVERLAY - Decorative background lines visible on all pages */
/* ============================================================================ */

.grid-lines {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    top: 0;
    left: 0;
}

.h-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.v-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #333;
}

/* ============================================================================ */
/* INDEX PAGE - Homepage with driver name and scrolling image/navigation */
/* ============================================================================ */

.main-container {
    position: relative;
    z-index: 2;
}

/* Left section - Driver name (sticky) */
.left-section {
    display: flex;
    align-items: center;
    padding-left: 60px;
    height: 100vh;
    position: sticky;
    top: 0;
}

.driver-name {
    font-size: 110px;
    line-height: 0.88;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-weight: 900;
}

/* Right section - Image and navigation menu */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px 80px 40px;
    min-height: 200vh;
}

/* Driver profile image frame */
.driver-image {
    width: 100%;
    max-width: 450px;
    height: 85vh;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 6px solid #fff;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 100vh;
}

.driver-image::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid #444;
    border-radius: 12px;
    z-index: 1;
}

.driver-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* Navigation menu - Appears after scrolling */
.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    width: 100%;
    max-width: 450px;
    padding-left: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    padding: 10px 0;
    opacity: 0.95;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff0000;
    transition: width 0.4s ease;
}

.nav-menu a:hover {
    color: #ff0000;
    letter-spacing: 2px;
    opacity: 1;
    transform: translateX(10px);
}

.nav-menu a:hover::after {
    width: 60px;
}

/* ============================================================================ */
/* ABOUT PAGE - Storytelling layout with staggered media */
/* ============================================================================ */

/* Top navigation bar */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 60px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.back-home {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: #ff0000;
    letter-spacing: 3px;
}

/* Main about container - New layout with inline media */
.about-container-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    position: relative;
    z-index: 2;
}

/* Page title */
.story-title {
    text-align: center;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 80px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Story row - Contains text and media in grid layout */
.story-row {
    position: relative;
    margin-bottom: 150px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Story text content - Center column */
.story-text {
    grid-column: 2;
    font-family: 'Roboto Mono', monospace;
}

.story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
    color: #ff0000;
}

.story-text p {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
    font-weight: 300;
}

/* Story media - Images and videos positioned on sides */
.story-media {
    width: 100%;
    height: 400px;
    position: sticky;
    top: 120px;
}

.story-media.left {
    grid-column: 1;
}

.story-media.right {
    grid-column: 3;
}

/* Video and image styling for story sections */
.story-media video,
.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================ */
/* SHARED FOOTER - Used across all pages */
/* ============================================================================ */

.footer {
    position: fixed;
    bottom: 30px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

/* Footer override for about page - Makes it relative instead of fixed */
.about-container-new ~ .footer,
.partners-container ~ .footer {
    position: relative;
    padding: 40px 60px;
    border-top: 1px solid #333;
    margin-top: 100px;
    bottom: auto;
    left: auto;
    right: auto;
}

.copyright {
    font-size: 9px;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff0000;
    color: #fff;
    transform: scale(1.15);
}

/* ============================================================================ */
/* PARTNERS PAGE - REVAMPED DESIGN */
/* ============================================================================ */

/* Partners Container */
.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    position: relative;
    z-index: 2;
}

/* Partners Page Title */
.partners-title {
    text-align: center;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.partners-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.partners-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 3px;
    color: #ff0000;
}

.partners-cta p {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.partners-cta .cta-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    color: #999;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #fff;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}

/* Partner Card */
.partner-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.partner-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

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

/* Partner Logo Container */
.partner-logo-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Partner Content */
.partner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    margin: 0;
}

.partner-description {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

.partner-link {
    display: inline-block;
    color: #ff0000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.partner-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.partner-link:hover {
    color: #fff;
    transform: translateX(5px);
}

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

/* ============================================================================ */
/* MOBILE RESPONSIVE - Tablet and mobile optimizations */
/* ============================================================================ */

@media (max-width: 991px) {
    /* ========================================
       INDEX PAGE - TABLET
       ======================================== */
    
    .driver-name {
        font-size: 70px;
        line-height: 0.9;
    }

    .left-section {
        padding: 40px 30px;
        height: auto;
        min-height: 50vh;
        position: relative;
        justify-content: center;
    }

    .right-section {
        padding: 40px 30px;
        min-height: auto;
    }

    .driver-image {
        height: 70vh;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .nav-menu {
        max-width: 100%;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 32px;
        text-align: center;
    }

    .nav-menu a:hover {
        transform: translateX(0) scale(1.02);
    }

    /* ========================================
       ABOUT PAGE - TABLET
       ======================================== */
    
    .about-container-new {
        padding: 100px 30px 60px;
    }

    .story-row {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .story-text {
        grid-column: 1;
        order: 2;
    }

    .story-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .story-text h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .story-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .top-nav {
        padding: 20px 30px;
    }

    /* Hide all about page media except first video on mobile */
    .about-container-new .story-media {
        display: none !important;
    }

    /* Show ONLY the first video (Early Beginnings section) */
    .about-container-new .story-row:first-of-type .story-media.left {
        display: block !important;
        position: relative !important;
        height: auto !important;
        max-width: 320px;
        margin: 0 auto 60px auto !important;
        order: 1;
    }

    .about-container-new .story-row:first-of-type .story-media.left video {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* ========================================
       PARTNERS PAGE - TABLET
       ======================================== */
    
    .partners-container {
        padding: 100px 30px 60px;
    }

    .partners-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .partners-cta {
        padding: 40px 30px;
        margin-bottom: 60px;
    }

    .partners-cta h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .partners-cta p {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 14px;
    }

    .partners-grid {
        gap: 40px;
        margin-top: 60px;
    }

    .partner-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .partner-logo-container {
        height: 200px;
        padding: 20px;
    }

    .partner-logo-container picture,
    .partner-logo-container img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .partner-name {
        font-size: 26px;
        text-align: center;
    }

    .partner-description {
        font-size: 14px;
        text-align: center;
    }

    .partner-link {
        text-align: center;
        font-size: 15px;
    }

    /* ========================================
       FOOTER - TABLET
       ======================================== */
    
    .footer {
        position: relative;
        margin-top: 60px;
        padding: 30px 20px;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }

    .about-container-new ~ .footer,
    .partners-container ~ .footer {
        padding: 30px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    /* ========================================
       INDEX PAGE - MOBILE
       ======================================== */
    
    .driver-name {
        font-size: 50px;
        letter-spacing: -1px;
    }

    .left-section {
        padding: 30px 20px;
        min-height: 40vh;
    }

    .right-section {
        padding: 30px 20px;
    }

    .driver-image {
        height: 60vh;
        border: 4px solid #fff;
    }

    .driver-image::before {
        inset: 6px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 28px;
        padding: 8px 0;
    }

    .nav-menu a:hover::after {
        width: 40px;
    }

    /* ========================================
       ABOUT PAGE - MOBILE
       ======================================== */
    
    .about-container-new {
        padding: 80px 20px 40px;
    }

    .story-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .story-row {
        margin-bottom: 80px;
    }

    .story-text h2 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .story-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .back-home {
        font-size: 12px;
    }

    /* Adjust first video on mobile - proper size and spacing */
    .about-container-new .story-row:first-of-type .story-media.left {
        max-width: 300px !important;
        margin-bottom: 60px !important;
    }

    /* ========================================
       PARTNERS PAGE - MOBILE
       ======================================== */
    
    .partners-container {
        padding: 80px 20px 40px;
    }

    .partners-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .partners-cta {
        padding: 30px 20px;
        margin-bottom: 50px;
        border-radius: 12px;
    }

    .partners-cta h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .partners-cta p {
        font-size: 14px;
        line-height: 1.6;
    }

    .partners-cta .cta-subtitle {
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .partners-grid {
        gap: 30px;
        margin-top: 40px;
    }

    .partner-card {
        padding: 30px 20px;
        gap: 25px;
        border-radius: 16px;
    }

    .partner-logo-container {
        height: 160px;
        padding: 15px;
    }

    .partner-name {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .partner-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .partner-link {
        font-size: 14px;
    }

    /* ========================================
       FOOTER - MOBILE
       ======================================== */
    
    .footer {
        padding: 20px 15px;
        gap: 15px;
        left: 0;
        right: 0;
    }

    .copyright {
        font-size: 7px;
        text-align: center;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
        width: 100%;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* ============================================================================ */
/* SOCIALS PAGE - VIDEO BACKGROUND WITH MODERN CARDS */
/* ============================================================================ */

/* Video Background */
.socials-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

/* Content Wrapper */
.socials-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 40px 100px;
}

/* Main Title */
.socials-main-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(90deg, #fff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

/* Modern Cards Container */
.socials-modern-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 60px;
}

/* Modern Social Card */
.modern-social-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    min-height: 380px;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-social-card:hover .card-glow {
    opacity: 1;
}

.modern-social-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.4);
}

/* Card Icon */
.card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.card-icon svg {
    width: 50px;
    height: 50px;
    color: #ff0000;
    transition: all 0.4s ease;
}

.modern-social-card:hover .card-icon {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.modern-social-card:hover .card-icon svg {
    color: #fff;
}

/* Card Content */
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-platform {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
}

.card-desc {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.card-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.modern-social-card:hover .card-cta {
    color: #fff;
    letter-spacing: 3px;
}

/* Email Section */
.socials-email-section {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
}

.email-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px 0;
}

.email-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ff0000;
    border-radius: 8px;
}

.email-button:hover {
    color: #fff;
    background: #ff0000;
    letter-spacing: 2px;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Footer Adjustment */
.socials-footer {
    position: relative !important;
    z-index: 2;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* ============================================================================ */
/* SOCIALS PAGE - RESPONSIVE */
/* ============================================================================ */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .socials-content-wrapper {
        padding: 120px 30px 80px;
    }

    .socials-main-title {
        font-size: 56px;
        margin-bottom: 60px;
        letter-spacing: 3px;
    }

    .socials-modern-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .modern-social-card {
        min-height: 300px;
        padding: 40px 30px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .card-icon svg {
        width: 40px;
        height: 40px;
    }

    .card-platform {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .card-desc {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .card-cta {
        font-size: 15px;
    }

    .socials-email-section {
        padding: 35px 25px;
    }

    .email-button {
        font-size: 18px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .socials-content-wrapper {
        padding: 100px 20px 60px;
    }

    .socials-main-title {
        font-size: 40px;
        margin-bottom: 50px;
        letter-spacing: 2px;
    }

    .socials-modern-cards {
        gap: 25px;
        margin-bottom: 40px;
    }

    .modern-social-card {
        min-height: 280px;
        padding: 35px 25px;
        border-radius: 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 35px;
        height: 35px;
    }

    .card-platform {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .card-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-cta {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .socials-email-section {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .email-label {
        font-size: 12px;
    }

    .email-button {
        font-size: 16px;
    }
}

/* ============================================================================ */
/* CALENDAR PAGE - RACE SCHEDULE */
/* ============================================================================ */

/* Calendar Container */
.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Calendar Event Card */
.calendar-event {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calendar-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ff0000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-event:hover {
    border-color: #ff0000;
    transform: translateX(5px);
}

.calendar-event:hover::before {
    opacity: 1;
}

/* Event Date */
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 12px;
    padding: 15px;
    min-width: 100px;
}

.event-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
    margin-bottom: 5px;
}

.event-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Details */
.event-details {
    flex-grow: 1;
}

.event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.event-location {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #aaa;
    margin: 0 0 8px 0;
}

.event-description {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

/* Event Status */
.event-status {
    display: flex;
    align-items: center;
}

.status-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Status Colors */
.status-upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-completed {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid #9e9e9e;
}

.status-cancelled {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* No Events Message */
.no-events {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed #444;
    border-radius: 16px;
}

.no-events p {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ============================================================================ */
/* CALENDAR PAGE - RESPONSIVE */
/* ============================================================================ */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .calendar-container {
        padding: 10px 0;
    }

    .calendar-event {
        grid-template-columns: 90px 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .event-date {
        min-width: 80px;
        padding: 12px;
    }

    .event-day {
        font-size: 30px;
    }

    .event-month {
        font-size: 14px;
    }

    .event-title {
        font-size: 20px;
    }

    .event-location {
        font-size: 13px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .calendar-event {
        grid-template-columns: 70px 1fr;
        gap: 15px;
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .calendar-event:hover {
        transform: translateX(3px);
    }

    .event-date {
        min-width: 70px;
        padding: 10px;
    }

    .event-day {
        font-size: 26px;
    }

    .event-month {
        font-size: 12px;
    }

    .event-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .event-location {
        font-size: 12px;
    }

    .no-events {
        padding: 40px 15px;
    }

    .no-events p {
        font-size: 14px;
    }
}

