/* COMPONENTS CSS FILE - COMPLETE FIXED VERSION */
/* This file contains: Sports Section, Sponsors Section, Contact Section */

/* Additional keyframes for components */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
}

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

@keyframes energyGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255,36,0,0.5); }
    to { box-shadow: 0 0 20px rgba(255,36,0,0.8), 0 0 30px rgba(255,36,0,0.4); }
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
}

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

/* New animation for golden glow effect */
@keyframes goldenGlow {
    0%, 100% { 
        text-shadow: 
            2px 2px 0px rgba(0,0,0,0.8),
            4px 4px 10px rgba(0,0,0,0.6),
            0px 0px 20px rgba(255,215,0,0.8),
            0px 0px 40px rgba(255,215,0,0.6);
    }
    50% { 
        text-shadow: 
            2px 2px 0px rgba(0,0,0,0.8),
            4px 4px 10px rgba(0,0,0,0.6),
            0px 0px 30px rgba(255,215,0,1),
            0px 0px 60px rgba(255,215,0,0.8);
    }
}

/* =================
   SPORTS SECTION
   ================= */
.sports-section {
    min-height: 100vh;
    position: relative;
    padding: 100px 50px;
    background-image: url('../assets/images/bg1.png');
    background-size: cover;
    background-position: center;
    background-color: var(--burgundy);
    opacity: 1;
}

.sports-intro {
    text-align: center;
    margin-bottom: 100px;
}

.sports-tagline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.sports-description {
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 1;
}

.sport-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
}

.sport-card.visible,
.sport-card[style*="animation"] {
    opacity: 1;
    transform: translateY(0);
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(128,0,32,0.4);
}

.sport-card:nth-child(1) { animation-delay: 0.1s; }
.sport-card:nth-child(2) { animation-delay: 0.2s; }
.sport-card:nth-child(3) { animation-delay: 0.3s; }
.sport-card:nth-child(4) { animation-delay: 0.4s; }
.sport-card:nth-child(5) { animation-delay: 0.5s; }
.sport-card:nth-child(6) { animation-delay: 0.6s; }
.sport-card:nth-child(7) { animation-delay: 0.7s; }
.sport-card:nth-child(8) { animation-delay: 0.8s; }

.sport-image {
    height: 250px;
    background: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.sport-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,215,0,0.3);
    transition: left 0.5s ease;
}

.sport-card:hover .sport-image::before {
    left: 100%;
}

.sport-content {
    padding: 30px;
    color: var(--dark-burgundy);
}

.sport-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sport-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.sport-details {
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}

.sport-btn {
    background: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.sport-btn:hover {
    background: var(--scarlet);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128,0,32,0.4);
}

/* =================
   SPONSORS SECTION - COMPLETELY FIXED FOR MOBILE
   ================= */
.sponsors-section {
    min-height: 120vh;
    padding: 120px 50px 180px;
    background-image: url('../assets/images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--dark-burgundy);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sponsors-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* FIXED: Responsive header with proper mobile scaling */
.sponsors-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.sponsors-excitement {
    /* FIXED: Make responsive with clamp() */
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.8),
        4px 4px 10px rgba(0,0,0,0.6),
        0px 0px 20px rgba(128,0,32,0.8);
    /* FIXED: Add proper line height for mobile */
    line-height: 1.3;
    /* FIXED: Add padding for mobile breathing room */
    padding: 0 1rem;
}

.sponsors-title {
    /* FIXED: Much more aggressive responsive scaling */
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--gold);
    background: none;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 1vw, 5px);
    margin-bottom: 25px;
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.8),
        4px 4px 10px rgba(0,0,0,0.6),
        0px 0px 20px rgba(255,215,0,0.8),
        0px 0px 40px rgba(255,215,0,0.6);
    animation: goldenGlow 3s ease-in-out infinite;
    /* FIXED: Better line height for mobile */
    line-height: 1.1;
    /* FIXED: Prevent text from touching edges */
    padding: 0 1rem;
}

.sponsors-subtitle {
    /* FIXED: Make responsive */
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.9),
        4px 4px 12px rgba(0,0,0,0.7),
        0px 0px 25px rgba(128,0,32,0.8);
    /* FIXED: Add padding for mobile */
    padding: 0 1rem;
}

.sponsors-energy-text {
    /* FIXED: Make responsive */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255,255,255,1);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 
        1px 1px 0px rgba(0,0,0,0.9),
        2px 2px 8px rgba(0,0,0,0.8),
        0px 0px 20px rgba(128,0,32,0.6);
    /* FIXED: Add padding for mobile */
    padding: 0 1rem;
}

/* FIXED: Dynamic Sponsors Grid with consistent layout */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns layout */
    gap: 40px;
    margin-bottom: 100px;
    align-items: stretch; /* Ensures all cards have same height */
}

/* FIXED: All sponsor cards have consistent styling */
.sponsor-card {
    background: rgba(255,255,255,0.12);
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    cursor: pointer;
    z-index: 3;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    min-height: 400px; /* Fixed minimum height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes content evenly */
}

.sponsor-card:hover {
    text-decoration: none;
    color: inherit;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,215,0,0.15) 0%, 
        rgba(255,36,0,0.08) 50%, 
        rgba(255,215,0,0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.sponsor-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border: 2px solid rgba(255,215,0,0.8);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        0 0 40px rgba(255,215,0,0.4);
}

/* FIXED: Energy badge positioning */
.sponsor-energy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--scarlet);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 4px 15px rgba(255,36,0,0.6);
    z-index: 10;
}

/* FIXED: Logo showcase with consistent size */
.sponsor-logo-showcase {
    width: 150px;
    height: 150px;
    margin: 20px auto 30px;
    border-radius: 25px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 0 0px 3px rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    flex-shrink: 0; /* Prevents shrinking */
}

.sponsor-card:hover .sponsor-logo-showcase {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 20px 45px rgba(0,0,0,0.5),
        0 0 0px 3px rgba(255,215,0,0.8);
}

/* Yellow overlay effect removed for cleaner logo display */
.sponsor-logo-showcase::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: transparent; /* No yellow effect */
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.sponsor-card:hover .sponsor-logo-showcase::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.sponsor-logo {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.1);
}

/* FIXED: Sponsor name styling */
.sponsor-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    flex-shrink: 0;
}

.sponsor-card:hover .sponsor-name {
    color: var(--white);
    text-shadow: 
        0 0 10px rgba(255,215,0,0.8),
        2px 2px 4px rgba(0,0,0,0.9);
}

/* FIXED: Sponsor story with flexible height */
.sponsor-story {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    flex-grow: 1; /* Takes available space */
}

/* FIXED: Awesome fact styling */
.sponsor-awesome-fact {
    background: rgba(255,36,0,0.15);
    border: 1px solid rgba(255,36,0,0.4);
    border-radius: 15px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 13px;
    color: var(--scarlet);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,36,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

/* FIXED: Connection section */
.sponsor-connection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Pushes to bottom */
    padding-top: 20px;
    border-top: 1px solid rgba(255,215,0,0.3);
    flex-shrink: 0;
}

.connection-year {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.connection-vibe {
    font-size: 20px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

/* FIXED: Open Spots with consistent layout */
.open-spot {
    border: 3px dashed rgba(255,215,0,0.6) !important;
    background: rgba(255,215,0,0.04) !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    min-height: 400px !important; /* Same as regular cards */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.open-spot::before {
    background: linear-gradient(135deg, 
        rgba(255,215,0,0.12) 0%, 
        rgba(255,36,0,0.06) 50%, 
        rgba(255,215,0,0.12) 100%) !important;
}

.open-spot:hover {
    border-color: rgba(255,215,0,1) !important;
    background: rgba(255,215,0,0.08) !important;
}

/* FIXED: Open spot icon with consistent size */
.open-spot-icon {
    width: 150px;
    height: 150px;
    margin: 20px auto 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,36,0,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(255,215,0,0.3);
    flex-shrink: 0;
}

/* FIXED: Open spot title */
.open-spot-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    flex-shrink: 0;
}

/* FIXED: Open spot text */
.open-spot-text {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 15px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    flex-grow: 1;
}

/* FIXED: Open spot energy */
.open-spot-energy {
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 15px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

/* Connection zone styling remains the same */
.connection-zone {
    background: rgba(255,255,255,0.06);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.connection-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.08), transparent);
    animation: connectionShine 4s ease-in-out infinite;
}

.connection-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.connection-message {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.connection-btn {
    background: linear-gradient(45deg, var(--scarlet), #FF6B35);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,36,0,0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.connection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.connection-btn:hover::before {
    left: 100%;
}

.connection-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,36,0,0.5);
}

/* =================
   CONTACT SECTION
   ================= */
.contact-section {
    padding: 100px 50px;
    background-image: url('../assets/images/bg3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.contact-image {
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-content {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    opacity: 1;
    transform: translateY(0);
}

.contact-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-description {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    position: relative;
}

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

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.form-input::placeholder {
    color: #999;
}

.submit-btn {
    background: var(--scarlet);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.submit-btn:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,36,0,0.4);
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Animation */
.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,215,0,0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 10px;
}

.sending-message {
    display: none;
    align-items: center;
    color: var(--gold);
    font-weight: bold;
    margin-top: 10px;
    justify-content: center;
}

.sending-message.show {
    display: flex;
}

/* Thank You Message */
.thank-you-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128,0,32,0.95);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1000;
}

.thank-you-message.show {
    opacity: 1;
    visibility: visible;
}

.thank-you-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.thank-you-text {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 400px;
}

.countdown {
    font-size: 16px;
    color: var(--gold);
    font-weight: bold;
}

/* =================
   RESPONSIVE DESIGN FOR COMPONENTS - ENHANCED MOBILE
   ================= */
@media (max-width: 1200px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Sports Section Mobile */
    .sports-section {
        padding: 80px 20px;
    }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* FIXED: Enhanced mobile styles for sponsors */
    .sponsors-section {
        padding: 60px 15px 100px;
        min-height: auto;
        /* FIXED: Disable fixed background on mobile for better performance */
        background-attachment: scroll;
    }

    .sponsors-header {
        margin-bottom: 60px;
    }

    .sponsors-excitement {
        font-size: clamp(1rem, 5vw, 1.4rem);
        margin-bottom: 10px;
        padding: 0 0.5rem;
        /* FIXED: Reduce complex text effects on mobile */
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }

    .sponsors-title {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
        letter-spacing: clamp(1px, 2vw, 3px);
        margin-bottom: 20px;
        /* FIXED: Ensure text doesn't break layout */
        word-wrap: break-word;
        hyphens: auto;
    }

    .sponsors-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 15px;
        letter-spacing: clamp(0.5px, 1vw, 2px);
    }

    .sponsors-energy-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .sponsor-card {
        padding: 35px 25px;
        min-height: 350px;
    }

    .open-spot {
        min-height: 350px !important;
    }

    .sponsor-logo-showcase,
    .open-spot-icon {
        width: 120px;
        height: 120px;
        margin: 15px auto 25px;
    }

    .sponsor-logo {
        max-width: 100px;
        max-height: 100px;
    }

    .open-spot-icon {
        font-size: 50px;
    }

    .connection-zone {
        padding: 35px 20px;
    }

    .connection-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .connection-message {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 0.5rem;
    }

    .connection-btn {
        padding: 15px 25px;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        padding: 25px;
    }

    .thank-you-title {
        font-size: 24px;
    }

    .thank-you-text {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* FIXED: Extra small mobile devices */
@media (max-width: 480px) {
    .sponsors-section {
        padding: 40px 10px 80px;
    }

    .sponsors-header {
        margin-bottom: 40px;
    }

    .sponsors-excitement {
        font-size: 1rem;
        padding: 0 0.25rem;
    }

    .sponsors-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        /* FIXED: More aggressive line breaks for very small screens */
        word-break: break-word;
    }

    .sponsors-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .sponsors-energy-text {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .sponsor-card {
        padding: 25px 15px;
        min-height: 300px;
    }

    .open-spot {
        min-height: 300px !important;
    }

    .connection-zone {
        padding: 25px 15px;
    }

    .connection-title {
        font-size: 1.2rem;
    }

    .connection-message {
        font-size: 0.85rem;
    }
}

/* FIXED: Very wide screens */
@media (min-width: 1400px) {
    .sponsors-title {
        font-size: 6rem;
    }
    
    .sponsors-excitement {
        font-size: 1.8rem;
    }
    
    .sponsors-subtitle {
        font-size: 1.4rem;
    }
}