/* ============================================
   Landing Page - Taoyuan Pauian Pilots
   Sporty, Modern, Dynamic Design
   ============================================ */

/* ============================================
   CSS Custom Properties
   ============================================ */
.landing-page {
    /* Primary Colors - Orange Theme */
    --primary: #FF6B35;
    --primary-dark: #E85A24;
    --primary-light: #FF8B5E;
    --primary-glow: rgba(255, 107, 53, 0.15);
    
    /* Secondary - Dark */
    --navy: #1A1A2E;
    --navy-light: #16213E;
    --navy-dark: #0F0F1A;
    
    /* Accent - Gold */
    --gold: #FFB800;
    --gold-light: #FFCB4D;
    
    /* Neutrals - White Theme */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-100: #F4F5F7;
    --gray-200: #E8EAED;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Text colors for white theme */
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    
    /* Typography */
    --font-display: 'Oswald', 'Noto Sans TC', sans-serif;
    --font-body: 'Inter', 'Noto Sans TC', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px var(--primary-glow);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Base Styles - White Theme
   ============================================ */
.landing-page {
    background: var(--white);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

/* Landing page footer inherits from global-footer.css via .custom-global-footer class */

/* Section Badge - White Theme */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.landing-history .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-about .section-badge,
.landing-players .section-badge {
    background: var(--gray-100);
    color: var(--primary);
}

/* ============================================
   Hero Section
   ============================================ */
.landing-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video,
.hero-poster,
.hero-youtube {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Scale YouTube video to cover (since iframe can't use object-fit) */
@media (min-aspect-ratio: 16/9) {
    .hero-youtube {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-youtube {
        width: auto;
        height: 100%;
    }
}

.hero-poster {
    background-size: cover;
    background-position: center;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--primary-dark) 100%);
    position: relative;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.1) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 39, 68, 0.3) 0%,
        rgba(26, 39, 68, 0.6) 50%,
        rgba(15, 26, 46, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    margin-bottom: 30px;
}

.badge-text {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    border-radius: 50px;
    background: rgba(255, 107, 53, 0.1);
}

.hero-title {
    margin: 0 0 25px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.title-english {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 8px;
    margin-top: 15px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-300);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-hero-primary svg {
    transition: transform var(--transition-fast);
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator - Hidden */
.hero-scroll-indicator {
    display: none;
}

/* ============================================
   Stats Section
   ============================================ */
.landing-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.landing-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   About Section - White Theme
   ============================================ */
.landing-about {
    padding: var(--section-padding) 20px;
    background: var(--off-white);
    position: relative;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-mission {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: 24px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-mission:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.04);
}

/* Animated accent line - hidden */
.mission-accent {
    display: none;
}

/* Icon styling */
.mission-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 184, 0, 0.05));
    border-radius: 12px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mission-icon svg {
    width: 24px;
    height: 24px;
}

.about-mission:hover .mission-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 184, 0, 0.1));
}

/* Content */
.mission-content {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 70px);
}

.mission-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}

.mission-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.mission-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-link {
    display: block;
    position: relative;
    transition: transform var(--transition-normal);
}

.about-image-link:hover {
    transform: scale(1.02);
}

.about-image-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0);
    border-radius: 20px;
    transition: background var(--transition-normal);
    pointer-events: none;
}

.about-image-link:hover::after {
    background: rgba(255, 107, 53, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.about-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-glow), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.placeholder-logo {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 8px;
}

.logo-stars {
    display: block;
    color: var(--primary);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: clamp(5px, 1.5vw, 10px);
    margin-top: 10px;
}

.about-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    z-index: -1;
}

.deco-circle {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

/* ============================================
   History Section - Card Swap Style
   ============================================ */
.landing-history {
    padding: var(--section-padding) 20px;
    background: #0d0d1a;
    position: relative;
    overflow: hidden;
}

/* GridScan Background */
.history-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.history-grid-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.history-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

/* Desktop: Side by side layout */
.history-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Left: Text Content */
.history-text {
    flex: 1;
    max-width: 480px;
}

.history-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.history-subtitle {
    font-size: 1.1rem;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.history-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Timeline Navigation Buttons */
.history-timeline-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.timeline-nav-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.timeline-nav-btn.active {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

.timeline-nav-btn.passed {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

.timeline-nav-btn.passed .timeline-nav-year {
    color: rgba(255, 107, 53, 0.6);
}

.timeline-nav-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange-primary);
    min-width: 60px;
}

.timeline-nav-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-nav-btn.active .timeline-nav-year {
    color: var(--white);
}

.timeline-nav-btn.active .timeline-nav-label {
    color: var(--white);
}

/* Right: Cards */
.history-cards-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

/* Old header styles - keep for backwards compatibility */
.history-header {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.history-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.1;
}

.history-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
    margin: 0;
    font-style: italic;
}

/* Cards Wrapper */
.history-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 5;
}

/* Timeline Navigation - Simple Button Row */
.history-timeline {
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.timeline-track {
    display: none;
}

.timeline-line {
    display: none;
}

.timeline-progress {
    display: none;
}

.timeline-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-point {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.timeline-point:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.timeline-point.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.timeline-point.passed {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.timeline-point.active .timeline-year {
    color: var(--white);
}

.timeline-point.passed .timeline-year {
    color: var(--primary);
}

.timeline-point:hover .timeline-year {
    color: var(--white);
}

/* Card Swap Container */
.card-swap-container {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    width: var(--card-width, 480px);
    height: var(--card-height, 360px);
    margin: 0 auto;
}

.history-card {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 16px;
    border: none;
    background: var(--navy);
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.history-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

/* Full coverage overlay for cards with images */
.history-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 46, 0.3) 0%,
        rgba(26, 26, 46, 0.7) 40%,
        rgba(26, 26, 46, 0.95) 100%
    );
    border-radius: 0;
    z-index: 2;
}

.history-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.5;
    border-radius: 0;
    z-index: 1;
}

.history-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
}

.history-card-year {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.history-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px;
}

.history-card-desc {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

/* Card Labels - Top pills */
.card-label {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

/* Different card styles */
.history-card.card-customizable {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.history-card.card-smooth {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.history-card.card-reliable {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

/* ============================================
   Players Section - White Theme
   ============================================ */
.landing-players {
    padding: var(--section-padding) 20px;
    background: var(--white);
    position: relative;
}

.players-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.players-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.player-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.player-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.player-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.player-card.featured.animate-in {
    transform: scale(1.05);
}

.player-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.player-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.player-card:hover .player-image {
    transform: scale(1.1);
}

.player-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.jersey-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    opacity: 0.8;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.player-info {
    padding: 25px;
    text-align: center;
    background: var(--white);
}

.player-name {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-primary);
    margin: 0 0 8px;
}

.player-position {
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.players-cta {
    text-align: center;
}

.btn-view-roster {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.btn-view-roster:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   YouTube Shorts Section
   ============================================ */
.landing-shorts {
    padding: var(--section-padding) 20px;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.landing-shorts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.shorts-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-shorts .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.landing-shorts .section-badge {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
}

.shorts-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0.5rem 0;
}

.shorts-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Shorts Grid - Horizontal scroll on mobile, grid on desktop */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.shorts-grid[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.shorts-grid[data-count="3"] {
    grid-template-columns: repeat(3, 1fr);
    max-width: 850px;
    margin: 0 auto;
}

.shorts-grid[data-count="5"],
.shorts-grid[data-count="6"] {
    grid-template-columns: repeat(3, 1fr);
}

/* Individual Short Item */
.shorts-item {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.shorts-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.shorts-item:nth-child(1) { transition-delay: 0s; }
.shorts-item:nth-child(2) { transition-delay: 0.1s; }
.shorts-item:nth-child(3) { transition-delay: 0.2s; }
.shorts-item:nth-child(4) { transition-delay: 0.3s; }
.shorts-item:nth-child(5) { transition-delay: 0.4s; }
.shorts-item:nth-child(6) { transition-delay: 0.5s; }

.shorts-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

/* Video Wrapper - 9:16 aspect ratio for shorts */
.shorts-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 16:9 inverted = 9:16 */
    background: #000;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.shorts-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Short Info */
.shorts-info {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.shorts-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shorts-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shorts-badge svg {
    fill: #ff4444;
}

/* Placeholder for empty shorts */
.shorts-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 2rem;
    text-align: center;
}

.shorts-placeholder svg {
    opacity: 0.5;
}

.shorts-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

.shorts-placeholder small {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shorts-grid[data-count="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .shorts-grid[data-count="2"],
    .shorts-grid[data-count="3"] {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
    
    .shorts-item {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .landing-shorts {
        padding: 60px 15px;
    }
    
    .shorts-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .shorts-grid[data-count="2"],
    .shorts-grid[data-count="3"],
    .shorts-grid[data-count="4"],
    .shorts-grid[data-count="5"],
    .shorts-grid[data-count="6"] {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Sponsorship Wall Section
   ============================================ */
.landing-sponsorship {
    padding: var(--section-padding) 0;
    margin-top: 40px;
    background: var(--white);
    position: relative;
}

.sponsorship-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.landing-sponsorship .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-sponsorship .section-badge {
    background: var(--gray-100);
    color: var(--primary);
}

.sponsorship-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.sponsorship-image-wrapper {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: var(--off-white);
}

.sponsorship-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.sponsorship-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    padding: 3rem;
    text-align: center;
}

.sponsorship-placeholder svg {
    opacity: 0.5;
    color: var(--primary);
}

.sponsorship-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.landing-cta {
    padding: var(--section-padding) 20px;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary {
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.btn-cta-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-cta-tertiary {
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.btn-cta-tertiary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   Custom Footer
   ============================================ */
.landing-footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.footer-main {
    padding: 5rem 2rem 3rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

/* Each section takes equal space, brand column slightly larger */
.footer-links,
.footer-contact,
.footer-extra {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-brand {
    flex: 1.5 1 280px;
    min-width: 280px;
}

/* Reorder columns: Links, Contact, Legal, Brand (right) */
.footer-brand { order: 4; }
.footer-links { order: 1; }
.footer-contact { order: 2; }
.footer-extra { order: 3; }

/* Brand Column */
.footer-brand {
    padding-left: 2rem;
    text-align: right;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo-text {
    margin-bottom: 1rem;
}

.footer-brand-icon {
    font-size: clamp(2rem, 4vw, 3rem);
}

.footer-brand-name {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social .social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1.25rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-nav a:hover::before {
    width: 15px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.credit {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .history-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .history-text {
        max-width: 100%;
        text-align: center;
    }
    
    .history-timeline-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .timeline-nav-btn {
        padding: 0.5rem 1rem;
    }
    
    .timeline-nav-btn:hover {
        transform: translateY(-3px);
    }
    
    .timeline-nav-label {
        display: none;
    }
    
    .history-cards-wrapper {
        min-height: 380px;
    }
    
    .card-swap-container {
        transform: scale(0.85);
    }
    
    .timeline-year {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding: 20px 20px 20px 60px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        margin-left: 0;
        text-align: left;
        transform: translateX(-30px);
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-card.featured {
        transform: none;
        grid-column: span 2;
    }
    
    .player-card.featured.animate-in {
        transform: none;
    }
    
    .player-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Footer Responsive - Tablet */
    .footer-container {
        gap: 2.5rem;
    }
    
    /* Reset order for tablet - brand on top */
    .footer-brand { order: 1; }
    .footer-links { order: 2; }
    .footer-contact { order: 3; }
    .footer-extra { order: 4; }
    
    .footer-brand {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact,
    .footer-extra {
        flex: 1 1 180px;
        min-width: 180px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact,
    .footer-extra {
        text-align: center;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a:hover {
        transform: none;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .player-card.featured {
        grid-column: span 1;
    }
    
    .landing-sponsorship {
        padding: 60px 0;
        margin-top: 20px;
    }
    
    .landing-sponsorship .section-header {
        margin-bottom: 40px;
    }
    
    .sponsorship-placeholder {
        min-height: 300px;
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
    
    .gallery-item.large {
        height: 300px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .card-swap-section {
        height: 350px;
    }
    
    .card-swap-container {
        transform: scale(0.7) translate(20%, 20%);
    }
    
    .landing-history {
        padding: 60px 15px;
    }
    
    .history-content {
        gap: 1.5rem;
    }
    
    .history-title {
        font-size: 1.75rem;
    }
    
    .history-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-nav-btn {
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-nav-year {
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .history-cards-wrapper {
        min-height: 320px;
    }
    
    .card-swap-container {
        transform: scale(0.65);
    }
    
    .timeline-point {
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
    }
    
    .timeline-year {
        font-size: 0.7rem;
    }
    
    /* Footer Responsive - Mobile */
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-container {
        gap: 2rem;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-extra {
        flex: 1 1 100%;
    }
    
    .footer-brand-name {
        font-size: 1.25rem;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .about-mission {
        padding: 30px 25px;
        text-align: center;
    }
    
    .mission-icon {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 20px;
    }
    
    .mission-content {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-tertiary {
        width: 100%;
        max-width: 280px;
    }
    
    .card-swap-container {
        transform: scale(0.5);
    }
    
    .timeline-points {
        gap: 0.3rem;
    }
    
    .timeline-point {
        padding: 0.3rem 0.6rem;
    }
    
    .timeline-year {
        font-size: 0.6rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-hero .hero-content {
    animation: fadeInUp 1s ease 0.3s both;
}

.landing-hero .hero-badge {
    animation: fadeInUp 1s ease 0.5s both;
}

.landing-hero .hero-actions {
    animation: fadeInUp 1s ease 0.7s both;
}

