    :root {
            /* Material Design Teal Color Palette */
            --teal-50: #e0f2f1;
            --teal-100: #b2dfdb;
            --teal-200: #80cbc4;
            --teal-300: #4db6ac;
            --teal-400: #26a69a;
            --teal-500: #009688;
            --teal-600: #00897b;
            --teal-700: #00796b;
            --teal-800: #00695c;
            --teal-900: #004d40;
            
            /* Material Design Grays */
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #eeeeee;
            --gray-300: #e0e0e0;
            --gray-400: #bdbdbd;
            --gray-500: #9e9e9e;
            --gray-600: #757575;
            --gray-700: #616161;
            --gray-800: #424242;
            --gray-900: #212121;
            
            /* Material Design Shadows */
            --shadow-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
            --shadow-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
            --shadow-3: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
            --shadow-4: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
            --shadow-5: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            /*background-color: var(--gray-50);*/
            bbackground: url('bg.jpg');
            color: var(--gray-800);
            line-height: 1.6;
        }

        /* Header Styles */
        .hero-header {
            background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .hero-description {
            font-size: 1.1rem;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Court Card Styles */
        .court-card {
            background: white;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-1);
            border: 2px solid #ccc;
            position: relative;
            overflow: hidden;
        }

        .court-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .court-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-4);
        }

        .court-card:hover::before {
            transform: scaleX(1);
        }

        .court-logo-container {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
            border: 3px solid var(--teal-200);
        }

        .court-card:hover .court-logo-container {
            transform: scale(1.1) rotate(5deg);
        }

        .court-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .court-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .court-location {
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .teal-button {
            background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-1);
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .teal-button:hover {
            background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
            transform: translateY(-2px);
            box-shadow: var(--shadow-2);
            color: white;
        }

        .teal-button:active {
            transform: translateY(0);
            box-shadow: var(--shadow-1);
        }

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--gray-800);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--gray-600);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        /* Footer */
        .footer {
            background-color: var(--gray-100);
            padding: 2rem 0;
            margin-top: 4rem;
            text-align: center;
            color: var(--gray-600);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .fade-in-delay-1 { animation-delay: 0.1s; }
        .fade-in-delay-2 { animation-delay: 0.2s; }
        .fade-in-delay-3 { animation-delay: 0.3s; }
        .fade-in-delay-4 { animation-delay: 0.4s; }
        .fade-in-delay-5 { animation-delay: 0.5s; }
        .fade-in-delay-6 { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            .court-card {
                padding: 1.5rem 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .court-logo-container {
                width: 60px;
                height: 60px;
            }
            
            .court-logo {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }















    :root {
      --gradient-main: linear-gradient(135deg, #00b9b5, #009688);
      --gradient-dark: linear-gradient(135deg, #009688, #00695c);
      --card-bg: rgba(255, 255, 255, 0.85);
      --border-gradient: linear-gradient(135deg, #00cfc1, #00897b);
      --box-glow: 0 4px 30px rgba(0, 185, 181, 0.25);
      --shadow-deep: 0 8px 24px rgba(0, 0, 0, 0.15);
      --text-color: #1a1a1a;
      --text-light: #ffffff;
      --radius-xl: 20px;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to bottom, #e0f7fa 0%, #ffffff 100%);
      color: var(--text-color);
    }

    .hero-header {
      background: var(--gradient-main);
      padding: 4rem 1rem;
      padding: 1rem 1rem;
      color: var(--text-light);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-header::after {
      content: "";
      position: absolute;
      top: -20%;
      left: -20%;
      width: 150%;
      height: 150%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
      animation: rotateBG 60s linear infinite;
      z-index: 0;
    }

    @keyframes rotateBG {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero-header > * {
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
    }

    .hero-subtitle {
      font-size: 1.4rem;
      font-weight: 500;
    }

    .hero-description {
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .search-wrapper {
      text-align: center;
      margin-bottom: 2rem;
    }

    .search-input {
      width: 100%;
      max-width: 400px;
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      border: 2px solid #00b9b5;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 150, 136, 0.1);
    }

    .search-input:focus {
      outline: none;
      border-color: #00796b;
      box-shadow: 0 4px 16px rgba(0, 150, 136, 0.2);
    }

    .court-card {
      background: var(--card-bg);
      border-radius: var(--radius-xl);
      padding: 2rem 1.5rem;
      text-align: center;
      border: 2px solid transparent;
      background-clip: padding-box;
      box-shadow: var(--box-glow);
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .court-card::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 2px;
      background: var(--border-gradient);
      border-radius: var(--radius-xl);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      pointer-events: none;
    }

    .court-card:hover {
      transform: translateY(-5px) scale(1.015);
      box-shadow: var(--shadow-deep);
    }

    .court-logo-container {
      background: var(--gradient-dark);
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }

    .court-logo-container img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .court-card:hover .court-logo-container {
      transform: scale(1.1) rotate(5deg);
    }

    .court-name {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .court-location {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1.25rem;
    }

    .teal-button {
      background: var(--gradient-dark);
      color: white;
      font-weight: 500;
      padding: 0.6rem 1rem;
      border-radius: 12px;
      display: inline-block;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 150, 136, 0.25);
      width: 100%;
    }

    .teal-button:hover {
      background: var(--gradient-main);
      box-shadow: 0 6px 16px rgba(0, 150, 136, 0.35);
      transform: translateY(-2px);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
    }

    .section-description {
      font-size: 1.1rem;
      color: #555;
      text-align: center;
      max-width: 650px;
      margin: 0 auto 2rem;
    }

    .footer {
      background: #f1f1f1;
      padding: 2rem 0;
      margin-top: 4rem;
      text-align: center;
      color: #666;
    }