 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #d32f2f 0%, #1976d2 50%, #b71c1c 100%);
            background-size: 400% 400%;
            animation: chileFlag 8s ease infinite;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes chileFlag {
            0% { background-position: 0% 50%; }
            25% { background-position: 50% 0%; }
            50% { background-position: 100% 50%; }
            75% { background-position: 50% 100%; }
            100% { background-position: 0% 50%; }
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: chilePattern 25s infinite linear;
        }

        @keyframes chilePattern {
            0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
            100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
        }

        .hero-content {
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 6rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
            animation: slideInFromTop 1.5s ease-out;
        }

        .hero p {
            font-size: 2rem;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: slideInFromBottom 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromTop {
            from { opacity: 0; transform: translateY(-100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromBottom {
            from { opacity: 0; transform: translateY(100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Timeline Section */
        .timeline-section {
            background: linear-gradient(45deg, #f5f5f5, #e8f4f8);
            padding: 80px 20px 120px 20px;
            min-height: 100vh;
            position: relative;
            z-index: 1;
        }

        .timeline-title {
            text-align: center;
            font-size: 3rem;
            color: #d32f2f;
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            overflow-y: visible;
            padding: 40px 20px;
            scrollbar-width: thin;
            scrollbar-color: #d32f2f #f0f0f0;
        }

        .timeline::-webkit-scrollbar {
            height: 8px;
        }

        .timeline::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 4px;
        }

        .timeline::-webkit-scrollbar-thumb {
            background: #d32f2f;
            border-radius: 4px;
        }

        .timeline::-webkit-scrollbar-thumb:hover {
            background: #b71c1c;
        }

        .timeline-container {
            display: flex;
            min-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .timeline-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d32f2f, #1976d2);
            border-radius: 2px;
            z-index: 1;
        }

        .timeline-item {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 20px;
            animation: slideInScale 0.8s ease-out forwards;
            opacity: 0;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }
        .timeline-item:nth-child(5) { animation-delay: 1s; }

        @keyframes slideInScale {
            from { 
                opacity: 0; 
                transform: translateY(30px) scale(0.8); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: #d32f2f;
            border: 4px solid white;
            border-radius: 50%;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
            transition: all 0.3s ease;
            top: 12px;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.3);
            box-shadow: 0 0 30px rgba(211, 47, 47, 0.5);
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            z-index: 10;
            margin-top: 20px;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #d32f2f;
            z-index: 20;
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d32f2f;
            margin-bottom: 10px;
        }

        .timeline-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.5;
        }

        /* Gallery Section */
        .gallery-section {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 80px 20px;
            min-height: 100vh;
        }

        .gallery-title {
            text-align: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .player-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .player-card:nth-child(1) { animation-delay: 0.2s; }
        .player-card:nth-child(2) { animation-delay: 0.4s; }
        .player-card:nth-child(3) { animation-delay: 0.6s; }
        .player-card:nth-child(4) { animation-delay: 0.8s; }

        .player-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .player-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #d32f2f, #1976d2);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .player-avatar.no-image {
            background: linear-gradient(45deg, #d32f2f, #1976d2);
        }

        .player-card:hover .player-avatar {
            transform: rotate(360deg);
        }

        .player-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 10px;
        }

        .player-description {
            color: #ccc;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Facts Section */
        .facts-section {
            background: linear-gradient(45deg, #d32f2f 0%, #1976d2 50%, #b71c1c 100%);
            background-size: 400% 400%;
            animation: chileColors 10s ease infinite;
            padding: 80px 20px;
            min-height: 80vh;
            position: relative;
        }

        .facts-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(211, 47, 47, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(25, 118, 210, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(183, 28, 28, 0.1) 0%, transparent 50%);
        }


        @keyframes chileColors {
            0% { background-position: 0% 50%; }
            33% { background-position: 50% 0%; }
            66% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes patrioticFloat {
            0%, 100% { transform: rotate(0deg) scale(1); }
            33% { transform: rotate(120deg) scale(1.1); }
            66% { transform: rotate(240deg) scale(0.9); }
        }

        .facts-title {
            text-align: center;
            font-size: 3rem;
            color: white;
            margin-bottom: 60px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .fact-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            animation: bounceIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .fact-card:nth-child(1) { animation-delay: 0.2s; }
        .fact-card:nth-child(2) { animation-delay: 0.4s; }
        .fact-card:nth-child(3) { animation-delay: 0.6s; }
        .fact-card:nth-child(4) { animation-delay: 0.8s; }
        .fact-card:nth-child(5) { animation-delay: 1s; }
        .fact-card:nth-child(6) { animation-delay: 1.2s; }

        @keyframes bounceIn {
            0% { 
                opacity: 0; 
                transform: scale(0.3) translateY(50px); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.05) translateY(-10px); 
            }
            70% { 
                transform: scale(0.9) translateY(0); 
            }
            100% { 
                opacity: 1; 
                transform: scale(1) translateY(0); 
            }
        }

        .fact-card:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .fact-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            animation: pulse 2s infinite;
        }

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

        .fact-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .fact-text {
            color: #666;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .timeline-title,
            .gallery-title,
            .facts-title {
                font-size: 2rem;
            }
            
            .timeline-container {
                flex-direction: column;
                min-width: auto;
            }
            
            .timeline-line {
                display: none;
            }
            
            .timeline-item {
                margin-bottom: 30px;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }