:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #fbbf24;
            --light: #f8fafc;
            --dark: #0f172a;
            --success: #10b981;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
            color: white;
            padding: 180px 0 120px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #152c6b;
            border-color: #152c6b;
            transform: scale(1.05);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-secondary:hover {
            background-color: #b91c1c;
            border-color: #b91c1c;
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary) !important;
        }
        .navbar-brand {
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: #f1f5f9;
            border-radius: 5px;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #cbd5e1;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--dark);
            color: #cbd5e1;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }
        .social-icon:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
        .facility-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-top: 5px solid var(--primary);
        }
        .player-card {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        .player-card img {
            transition: transform 0.5s;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        .player-card:hover .player-overlay {
            transform: translateY(0);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
