/* ========== SPONSORSHIP HERO SECTION ========== */
.sponsorship-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 40vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.sponsorship-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.sponsorship-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.sponsorship-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.sponsorship-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.sponsorship-hero-section .hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

.sponsorship-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0;
}

/* ========== SPONSORSHIP SECTION ========== */
.sponsorship-section {
    background: #f5f7fa;
    padding: 80px 0 100px;
}

.sponsorship-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

/* ========== BENEFITS GRID ========== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 176, 176, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ========== OPPORTUNITIES SECTION ========== */
.opportunities-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.opportunities-content {
    padding-right: 40px;
}

.opportunities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.opportunity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
    font-weight: 600;
}

.opportunity-item svg {
    color: #00b0b0;
    flex-shrink: 0;
}

.opportunities-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.opportunities-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    padding: 64px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-section .btn {
    background: #ffffff;
    color: #00b0b0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .opportunities-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .opportunities-content {
        padding-right: 0;
    }
    
    .opportunities-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sponsorship-section {
        padding: 60px 0 80px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 48px 32px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}
