 /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --barca-blue: #004d98;
            --barca-red: #a50044;
            --barca-gold: #edbb00;
            --psg-blue: #004170;
            --psg-red: #da291c;
            --inter-pink: #d10363;
            --inter-blue: #0062ac;
            --argentina-blue: #43a1d5;
            --argentina-yellow: #f9b80a;
            --dark: #333;
            --light: #f8f9fa;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--barca-blue);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--barca-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--barca-blue);
            margin: 15px auto;
            border-radius: 2px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--barca-blue) 0%, var(--psg-blue) 100%);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .logo span {
            color: var(--barca-gold);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--barca-gold);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images5.alphacoders.com/958/thumbbig-958579.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            animation: fadeIn 2s ease;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            min-width: 150px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--barca-gold);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Timeline Section */
        .timeline {
            background: var(--light);
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--barca-blue);
        }

        .timeline-item {
            width: 50%;
            padding: 20px 40px;
            position: relative;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            transform: translateX(50px);
        }

        .timeline-item:nth-child(even).visible {
            transform: translateX(0);
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--barca-blue);
            margin-bottom: 10px;
        }

        .timeline-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .timeline-club {
            display: inline-block;
            padding: 5px 15px;
            background: var(--barca-blue);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .timeline-image {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 15px;
            position: relative;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease 0.3s;
        }

        .timeline-item.visible .timeline-image {
            opacity: 1;
            transform: scale(1);
        }

        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .timeline-image:hover img {
            transform: scale(1.1);
        }

        .timeline-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .timeline-image:hover::after {
            opacity: 1;
        }

        /* Trophies Section */
        .trophies {
            background: linear-gradient(135deg, var(--barca-blue) 0%, var(--psg-blue) 100%);
            color: white;
        }

        .trophies .section-title {
            color: white;
        }

        .trophies .section-title::after {
            background: var(--barca-gold);
        }

        .trophy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .trophy-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .trophy-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .trophy-item:hover {
            transform: translateY(-10px);
        }

        .trophy-icon {
            font-size: 3rem;
            color: var(--barca-gold);
            margin-bottom: 20px;
        }

        .trophy-count {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .trophy-name {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Records Section */
        .records {
            background: var(--light);
        }

        .record-container {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }

        .record-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }

        .record-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .record-item:nth-child(even) {
            transform: translateX(30px);
        }

        .record-item:nth-child(even).visible {
            transform: translateX(0);
        }

        .record-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .record-icon {
            width: 60px;
            height: 60px;
            background: var(--barca-blue);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .record-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Gallery Section */
        .gallery {
            background: linear-gradient(135deg, var(--psg-blue) 0%, var(--inter-pink) 100%);
            color: white;
        }

        .gallery .section-title {
            color: white;
        }

        .gallery .section-title::after {
            background: var(--barca-gold);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease;
        }

        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-logo span {
            color: var(--barca-gold);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--barca-blue);
            transform: translateY(-5px);
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 20px;
                left: 0 !important;
                transform: translateX(-30px) !important;
            }

            .timeline-item.visible {
                transform: translateX(0) !important;
            }

            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
                right: auto;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--barca-blue);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                flex-wrap: wrap;
            }

            .section-title {
                font-size: 2rem;
            }

            .record-item {
                flex-direction: column;
                text-align: center;
            }

            .record-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 10px 25px;
            }

            section {
                padding: 60px 0;
            }

            .timeline-image {
                height: 150px;
            }
        }