* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #2c3e50;
            line-height: 1.9;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .header-nav {
            background-color: #2a7fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffd100;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd100;
            border-bottom: 2px solid #ffd100;
        }
        .daman-link {
            background-color: #ffd100;
            padding: 10px 20px;
            border-radius: 30px;
            color: #2c3e50 !important;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #ffb800;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 100%);
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 3rem;
            color: #2a7fff;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 30px;
            color: #4a5568;
            line-height: 1.8;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #2a7fff;
            color: #fff;
            box-shadow: 0 6px 18px rgba(42, 127, 255, 0.3);
        }
        .download-btn:hover {
            background-color: #1a66e0;
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(42, 127, 255, 0.4);
        }
        .login-btn {
            background-color: #ff6b00;
            color: #fff;
            box-shadow: 0 6px 18px rgba(255, 107, 0, 0.3);
        }
        .login-btn:hover {
            background-color: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(255, 107, 0, 0.4);
        }
        section {
            margin: 80px 0;
        }
        h2 {
            font-size: 2.3rem;
            color: #2c3e50;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 4px solid #2a7fff;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }
        h3 {
            font-size: 1.8rem;
            color: #2a7fff;
            margin: 40px 0 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }
        h4 {
            font-size: 1.4rem;
            color: #ff6b00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #343a40;
        }
        .highlight {
            font-weight: 800;
            color: #2a7fff;
        }
        .card {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.07);
            border-left: 5px solid #2a7fff;
        }
        .image-container {
            text-align: center;
            margin: 60px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        ul {
            margin: 30px 0 40px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #343a40;
            list-style-type: disc;
            position: relative;
            padding-left: 15px;
        }
        li:before {
            content: "⚽";
            position: absolute;
            left: -25px;
            top: 2px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .stat-card {
            background-color: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            border-top: 5px solid #2a7fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: #2a7fff;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 600;
        }
        .review-card {
            background-color: #faf6ed;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-right: 5px solid #ffd100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: 700;
            color: #2a7fff;
            margin-bottom: 10px;
            display: block;
            font-size: 1.2rem;
        }
        .review-location {
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 15px;
            display: block;
        }
        .review-rating {
            color: #ffd100;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .tip-box {
            background-color: #e6f7ff;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 5px solid #2a7fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tip-box h4 {
            color: #0a58ca;
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .event-card {
            background-color: #fef7fb;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 35px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .event-img {
            flex: 1;
            min-width: 300px;
        }
        .event-details {
            flex: 2;
            min-width: 300px;
        }
        .event-date {
            font-weight: 700;
            color: #ff6b00;
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: inline-block;
            background-color: #fff5e6;
            padding: 8px 15px;
            border-radius: 30px;
        }
        .footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 80px 0 40px;
            margin-top: 100px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffd100;
            border-bottom: 3px solid #ffd100;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
            list-style-type: none;
            padding-left: 0;
        }
        .footer-links li:before {
            content: "";
            display: none;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #ffd100;
            padding-left: 8px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .tag {
            background-color: #34495e;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffd100;
        }
        .tag a {
            color: #fff;
            text-decoration: none;
        }
        .tag:hover a {
            color: #2c3e50;
        }
        .promo-text {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
            font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .promo-text a {
            color: #2a7fff;
            font-weight: 700;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        .promo-text a:hover {
            color: #1a66e0;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #34495e;
            font-size: 1rem;
            color: #b0b7c3;
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 1.7rem;
            }
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            .stat-number {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #2a7fff;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .hero {
                padding: 40px 15px;
            }
            .card {
                padding: 30px 20px;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-card {
                padding: 25px;
            }
            .stat-number {
                font-size: 2rem;
            }
            ul {
                margin-left: 30px;
            }
            .event-card {
                padding: 25px;
            }
            .footer-grid {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer {
                padding: 60px 0 30px;
            }
        }
