/* home.css - All styles for home.blade.php */

/* ========== HERO SECTION ========== */
.min-h-hero {
    min-height: 80vh;
}

.bg-black-80 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.bg-gradient-to-b {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.video-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video:not([error]) + .video-fallback {
    display: none;
}

.nav-glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-glass.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-block;
    background-color: #f59e0b;
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-title-accent {
    color: #fbbf24;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.5rem;
    }
}

.hero-main-desc {
    font-size: 1.125rem;
    color: white;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
    .hero-main-desc {
        font-size: 1.25rem;
    }
}

.btn-main-cta {
    background-color: #f59e0b;
    color: black;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-main-cta:hover {
    background-color: #fbbf24;
    transform: scale(1.05);
}

.btn-secondary-cta {
    border: 2px solid white;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-cta:hover {
    background-color: white;
    color: black;
}

.hero-stat-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stat-value {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fbbf24 !important;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 20;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 0px rgba(0, 0, 0, 0.9),
        -1px -1px 0px rgba(0, 0, 0, 0.9);
}

.hero-stat-label {
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 20;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        1px 1px 0px rgba(0, 0, 0, 0.7),
        -1px -1px 0px rgba(0, 0, 0, 0.7);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    width: var(--progress-width, 0%);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8), transparent);
    transform: translateX(var(--glow-position, 0%));
    filter: blur(8px);
}

/* ========== ABOUT SECTION ========== */
.card-about {
    background-color: white !important;
    border: 1px solid #e5e7eb !important;
    min-height: 500px;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-badge {
    display: inline-block;
    background-color: #f59e0b !important;
    color: black !important;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 900 !important;
    color: black !important;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-title-accent {
    color: #f59e0b !important;
    filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.4));
    margin-top: 0.75rem;
    display: inline-block;
}

.about-desc-card {
    background-color: #f3f4f6 !important;
    border-left: 4px solid #f59e0b !important;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.about-desc {
    color: black !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    max-width: 68ch !important;
}

.about-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #f59e0b !important;
    color: black !important;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.about-btn-main:hover {
    background-color: #fbbf24 !important;
    transform: scale(1.05);
}

.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid black !important;
    color: black !important;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.about-btn-secondary:hover {
    background-color: black;
    color: white;
}

.counter-num {
    font-size: 3rem !important;
    color: #f59e0b !important;
    font-weight: 900 !important;
    margin-bottom: 0.75rem !important;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 40px rgba(251, 191, 36, 0.4) !important;
    animation: glow 2s ease-in-out infinite alternate !important;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 40px rgba(251, 191, 36, 0.4);
    }
    to {
        text-shadow: 0 0 30px rgba(251, 191, 36, 0.8), 0 0 60px rgba(251, 191, 36, 0.6);
    }
}

/* ========== MEDAL CHALLENGE ========== */
.bg-medal {
    background-color: #FAFAF5 !important;
}

.medal-header-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 247, 237, 0.95) 100%) !important;
    padding: 3rem !important;
    border-radius: 1.5rem !important;
    margin: 2rem auto !important;
    max-width: 900px !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.medal-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: white !important;
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3) !important;
    letter-spacing: 2px !important;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.medal-main-title {
    color: #1f2937 !important;
    font-weight: 900 !important;
    font-size: 3.5rem !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03) !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    letter-spacing: 2px !important;
    line-height: 1.2;
}

.medal-title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block !important;
    margin-top: 0.625rem !important;
}

.medal-desc {
    color: #4b5563 !important;
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    font-family: Arial, sans-serif !important;
}

.medal-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%) !important;
    color: black !important;
    border: 2px solid #f59e0b !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2), 0 10px 10px -5px rgba(245, 158, 11, 0.1) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    transform: translateY(0) !important;
}

.medal-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.35) !important;
}

.icon-wrapper {
    width: 5rem !important;
    height: 5rem !important;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 2rem auto !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3) !important;
}

/* ========== TRAINING SCHEDULE ========== */
.training-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 247, 237, 0.95) 100%) !important;
    padding: 2.5rem !important;
    border-radius: 1.5rem !important;
    margin: 2rem auto !important;
    max-width: 900px !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.training-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: white !important;
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3) !important;
    letter-spacing: 2px !important;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.training-title {
    color: #1f2937 !important;
    font-weight: 900 !important;
    font-size: 3.5rem !important;
    margin-bottom: 2rem !important;
    text-shadow: none !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    letter-spacing: 2px !important;
    line-height: 1.2;
}

.training-title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.training-desc {
    color: #4b5563 !important;
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    font-family: Arial, sans-serif !important;
}

.training-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%) !important;
    border: 2.5px solid #f59e0b !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2), 0 10px 10px -5px rgba(245, 158, 11, 0.15) !important;
    border-radius: 1.5rem !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    transform: translateY(0) !important;
}

.training-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.3) !important;
}

.training-card.no-training {
    border: 1.5px solid rgba(245, 158, 11, 0.3) !important;
    box-shadow: 0 8px 12px -5px rgba(245, 158, 11, 0.08) !important;
    padding: 1.5rem !important;
}

.training-day-indicator {
    width: 0.875rem !important;
    height: 0.875rem !important;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    border-radius: 50% !important;
    margin-right: 0.875rem !important;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4) !important;
}

.training-day-title {
    color: #1f2937 !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
}

.training-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    transition: all 0.2s ease !important;
}

.training-item:hover {
    border-color: #f59e0b !important;
    transform: scale(1.02) !important;
}

.training-item-title {
    color: #1f2937 !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    font-family: Arial, sans-serif !important;
}

.training-item-desc {
    color: #4b5563 !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
    font-family: Arial, sans-serif !important;
}

.training-meta {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    font-family: Arial, sans-serif !important;
}

.training-meta-badge {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(245, 158, 11, 0.1) !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.training-meta-icon {
    width: 1rem !important;
    height: 1rem !important;
    margin-right: 0.5rem !important;
    color: #f59e0b !important;
    flex-shrink: 0 !important;
}

/* ========== TEAM & BOARD ========== */
.team-header, .board-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 247, 237, 0.95) 100%) !important;
    padding: 3rem !important;
    border-radius: 1.5rem !important;
    margin: 2rem auto !important;
    max-width: 900px !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.team-badge, .board-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: white !important;
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3) !important;
    letter-spacing: 2px !important;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.team-title, .board-title {
    color: #1f2937 !important;
    font-weight: 900 !important;
    font-size: 3.5rem !important;
    margin-bottom: 2rem !important;
    text-shadow: none !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    letter-spacing: 2px !important;
    line-height: 1.2;
}

.team-title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.board-title-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.team-desc, .board-desc {
    color: #4b5563 !important;
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    margin-bottom: 0 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    font-family: Arial, sans-serif !important;
}

.team-member-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%) !important;
    border: 2px solid #f59e0b !important;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.15), 0 10px 10px -5px rgba(245, 158, 11, 0.1) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    transform: translateY(0) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.team-member-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 35px 60px -12px rgba(245, 158, 11, 0.35), 0 0 20px rgba(245, 158, 11, 0.15) !important;
}

.board-member-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px solid #64748b !important;
    box-shadow: 0 20px 25px -5px rgba(100, 116, 139, 0.15), 0 10px 10px -5px rgba(100, 116, 139, 0.1) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    transform: translateY(0) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.board-member-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 35px 60px -12px rgba(100, 116, 139, 0.35), 0 0 20px rgba(100, 116, 139, 0.1) !important;
}

.team-photo, .board-photo {
    width: 9rem !important;
    height: 9rem !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.2) !important;
    transition: all 0.3s ease !important;
}

.team-photo {
    border: 4px solid #f59e0b !important;
}

.board-photo {
    border: 4px solid #64748b !important;
}

.team-photo:hover, .board-photo:hover {
    transform: scale(1.05) !important;
}

.team-badge-label {
    position: absolute !important;
    bottom: -0.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.3s ease !important;
}

.board-badge-label {
    position: absolute !important;
    bottom: -0.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 8px rgba(55, 65, 81, 0.3) !important;
    transition: all 0.3s ease !important;
}

.team-member-name, .board-member-name {
    color: #1f2937 !important;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
    margin: 0.5rem auto 0.625rem auto !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    line-height: 1.3 !important;
}

.team-member-role {
    color: #f59e0b !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1.75rem auto !important;
    font-family: Arial, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.board-member-role {
    color: #64748b !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1.75rem auto !important;
    font-family: Arial, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.social-link {
    width: 3rem !important;
    height: 3rem !important;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.social-link:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    transform: translateY(-4px) scale(1.1) !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.4) !important;
}

.social-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    color: #6b7280 !important;
    transition: color 0.3s ease !important;
}

.social-link:hover .social-icon {
    color: white !important;
}

/* ========== LIGA SECTION ========== */
.liga-header-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: white !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3) !important;
    letter-spacing: 2px !important;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.liga-card {
    background: linear-gradient(to right, #f59e0b, #fb923c);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anticipationPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes typographySettle {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1);
    }
}

.counter-animate {
    animation: fadeInUp 0.6s ease-out;
}

.counter-finished {
    animation: typographySettle 0.5s ease-out forwards;
}

.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #fcd34d);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .medal-main-title,
    .training-title,
    .team-title,
    .board-title {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 0px rgba(0, 0, 0, 0.9),
        -1px -1px 0px rgba(0, 0, 0, 0.9),
        1px -1px 0px rgba(0, 0, 0, 0.9),
        -1px 1px 0px rgba(0, 0, 0, 0.9);
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 100;
    display: block;
    color: white !important;
    line-height: 1.1;
}

.hero-content .text-amber-400 {
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(251, 191, 36, 0.4),
        1px 1px 0px rgba(0, 0, 0, 0.9),
        -1px -1px 0px rgba(0, 0, 0, 0.9),
        1px -1px 0px rgba(0, 0, 0, 0.9),
        -1px 1px 0px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 100;
    color: #fbbf24 !important;
    line-height: 1.1;
}

.hero-content p {
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.8),
        1px 1px 0px rgba(0, 0, 0, 0.7),
        -1px -1px 0px rgba(0, 0, 0, 0.7),
        1px -1px 0px rgba(0, 0, 0, 0.7),
        -1px 1px 0px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    position: relative;
    z-index: 100;
    color: white !important;
    line-height: 1.5;
}

/* ...existing code... (rest of CSS from <style> block) */
