:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffc107;
            --dark-blue: #0d3b66;
            --light-gray: #f8f9fa;
            --accent-red: #dc3545;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-blue);
        }
        .navbar {
            background-color: rgba(13, 59, 102, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-gold);
        }
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0 6rem;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-section .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #155724;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            border-radius: 2px;
        }
        .section-title.text-start:after {
            left: 0;
            transform: none;
        }
        .about-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .about-img:hover {
            transform: scale(1.02);
        }
        .icon-box {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s;
            height: 100%;
            border-top: 4px solid var(--primary-green);
        }
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .icon-box i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        .player-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
            background: white;
            height: 100%;
        }
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 280px;
            object-fit: cover;
            width: 100%;
        }
        .badge-custom {
            background-color: var(--dark-blue);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--primary-green);
        }
        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
        }
        .timeline-content {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            position: relative;
            border-left: 4px solid var(--primary-green);
        }
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            width: calc(50% - 2rem);
        }
        .timeline-item:nth-child(even) .timeline-content {
            width: calc(50% - 2rem);
        }
        .timeline-content:before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background: var(--primary-green);
            border-radius: 50%;
        }
        .timeline-item:nth-child(odd) .timeline-content:before {
            left: -10px;
        }
        .timeline-item:nth-child(even) .timeline-content:before {
            right: -10px;
        }
        .contact-info-box {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            height: 100%;
            border-left: 4px solid var(--dark-blue);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }
        .form-control-custom {
            border-radius: 8px;
            border: 1px solid #dee2e6;
            padding: 0.9rem 1.2rem;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(30, 126, 52, 0.25);
        }
        .footer {
            background-color: var(--dark-blue);
            color: rgba(255,255,255,0.85);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-title {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 0.8rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: var(--light-gray);
            padding: 3rem 0;
        }
        .flink {
            background: white;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            color: var(--dark-blue);
            display: block;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #e9ecef;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .flink:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-5px);
        }
        .flink i {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            display: block;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.2rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--dark-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .timeline:before {
                left: 30px;
            }
            .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }
            .timeline-content:before {
                left: -60px !important;
            }
        }
        @media (max-width: 576px) {
            .hero-section {
                padding: 8rem 0 4rem;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
