:root {
            --delhi-blue: #0a2463;
            --delhi-orange: #ff6b35;
            --delhi-sky: #00b4d8;
            --delhi-white: #f8f9fa;
            --delhi-dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: var(--delhi-dark);
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            font-weight: 700;
        }
        .bg-delhi-blue {
            background-color: var(--delhi-blue) !important;
        }
        .text-delhi-orange {
            color: var(--delhi-orange) !important;
        }
        .bg-delhi-orange {
            background-color: var(--delhi-orange) !important;
        }
        .btn-delhi-orange {
            background-color: var(--delhi-orange);
            border-color: var(--delhi-orange);
            color: white;
        }
        .btn-delhi-orange:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .navbar {
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }
        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--delhi-orange);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero-section .lead {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .floating-ball {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .floating-ball:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        .floating-ball:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            width: 40px;
            height: 40px;
        }
        .floating-ball:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
            width: 70px;
            height: 70px;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--delhi-orange);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .player-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
            transition: all 0.3s ease;
        }
        .player-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .player-img {
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .news-card {
            border-left: 4px solid var(--delhi-orange);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            border-left-color: var(--delhi-blue);
            background-color: #f8f9fa;
        }
        .stadium-img {
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
        }
        .contact-info-box {
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .friendlink {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .flink {
            color: var(--delhi-blue);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .flink:hover {
            background-color: var(--delhi-orange);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--delhi-dark);
            color: #dee2e6;
            padding-top: 3rem;
        }
        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer a:hover {
            color: var(--delhi-orange);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #495057;
            color: white;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--delhi-orange);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--delhi-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--delhi-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section .lead {
                font-size: 1.1rem;
            }
            .navbar-brand img {
                height: 40px;
            }
            .stadium-img {
                height: 250px;
            }
        }
