.marianne-section {
    padding: 4rem 0 6rem 0;
background: linear-gradient(180deg, 
    rgba(26, 32, 44, 0) 0%, 
    rgba(45, 55, 72, 0.3) 20%, 
    rgba(45, 55, 72, 0.5) 50%, 
    rgba(45, 55, 72, 0.3) 70%, 
    rgba(26, 32, 44, 0) 90%    
);
    position: relative;
    overflow: hidden;
}

.marianne-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(229, 62, 62, 0.05) 100%  
    );
    pointer-events: none;
    z-index: 10;
}

.marianne-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(229, 62, 62, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e53e3e 0%, #f56565 50%, #e53e3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    filter: drop-shadow(0 4px 8px rgba(229, 62, 62, 0.3));
}

.section-header h2::before {
    content: '🏆';
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(229, 62, 62, 0.6));
    animation: trophy-glow 3s ease-in-out infinite alternate;
}

@keyframes trophy-glow {
    0% { filter: drop-shadow(0 0 15px rgba(229, 62, 62, 0.6)); }
    100% { filter: drop-shadow(0 0 25px rgba(229, 62, 62, 0.9)); }
}

.marianne-section-subtitle {
    color: #cbd5e0;
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
    opacity: 0.9;
}

.marianne-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.marianne-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(45deg, #e53e3e, #c53030, #e53e3e);
    padding: 3px;
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.4), 0 0 0 3px rgba(229, 62, 62, 0.2);
}

.marianne-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #e53e3e, #c53030, #e53e3e, #c53030, #e53e3e);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.marianne-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.marianne-intro p {
    flex: 1;
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    text-align: center;
}

.achievements-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.world-championships,
.pan-american,
.national-titles {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(229, 62, 62, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.world-championships::before,
.pan-american::before,
.national-titles::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 62, 62, 0.1), transparent);
    transition: left 0.6s ease;
}

.world-championships:hover::before,
.pan-american:hover::before,
.national-titles:hover::before {
    left: 100%;
}

.world-championships:hover,
.pan-american:hover,
.national-titles:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(229, 62, 62, 0.5);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.world-championships h3,
.pan-american h3,
.national-titles h3 {
    background: linear-gradient(135deg, #e53e3e 0%, #f56565 50%, #e53e3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.world-championships h3::before {
    content: '🌍';
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(66, 153, 225, 0.6));
}

.pan-american h3::before {
    content: '🥇';
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(237, 137, 54, 0.6));
}

.national-titles h3::before {
    content: '🇺🇸';
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(229, 62, 62, 0.6));
}

.years-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.year-item {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.15) 0%, rgba(197, 48, 48, 0.15) 100%);
    color: #f7fafc;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(229, 62, 62, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.year-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.year-item:hover::before {
    left: 100%;
}

.year-item:hover {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.25) 0%, rgba(197, 48, 48, 0.25) 100%);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(229, 62, 62, 0.6);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.year-item.highlight {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.3) 0%, rgba(197, 48, 48, 0.3) 100%);
    border: 1px solid rgba(229, 62, 62, 0.6);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.4);
}

.medal {
    font-style: normal;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.medal.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #d4af37 100%);
    color: #744210;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.medal.silver {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 50%, #a0aec0 100%);
    color: #2d3748;
    box-shadow: 0 2px 8px rgba(160, 174, 192, 0.4);
}

.medal.bronze {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 50%, #c05621 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(237, 137, 54, 0.4);
}

.champion-years {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.champion-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #e53e3e 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.champion-badge::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.6s ease;
}

.champion-badge:hover::before {
    left: 100%;
}

.champion-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 50%, #c53030 100%);
}

@media (max-width: 768px) {
    .marianne-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .marianne-section-subtitle {
        font-size: 1.1rem;
    }
    
    .marianne-intro p {
        font-size: 1.1rem;
    }
    
    .marianne-image {
        width: 110px;
        height: 110px;
    }
    
    .achievements-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .years-grid,
    .champion-years {
        justify-content: center;
    }
    
    .world-championships,
    .pan-american,
    .national-titles {
        padding: 1.25rem;
    }
}
