* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 100px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #0a3d62, #3c6382);
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd32a;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffffff;
        }
        .logo emoji {
            font-size: 2.5rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-menu li a:hover {
            color: #ffd32a;
            border-bottom: 3px solid #ffd32a;
        }
        .daman-link {
            background-color: #ffd32a;
            color: #0a3d62 !important;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 700 !important;
            border-bottom: none !important;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .daman-link:hover {
            background-color: #ffc107;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            font-size: 2.1rem;
            cursor: pointer;
            color: #ffffff;
            background: none;
            border: none;
        }
        .container {
            max-width: 1450px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0a3d62;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffd32a;
            font-weight: 900;
            line-height: 1.5;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.1rem;
            color: #0a3d62;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 5px solid #ffd32a;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.6rem;
            color: #273c75;
            margin: 40px 0 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h3::before {
            content: "⚽";
            display: inline-block;
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #34495e;
            margin: 30px 0 18px;
            font-weight: 600;
            text-transform: capitalize;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
            padding: 0 4px;
        }
        .bold {
            font-weight: 800;
            color: #e74c3c;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 4px 8px;
            border-radius: 5px;
            font-weight: 700;
            color: #d35400;
        }
        .callout {
            background-color: #e8f4fd;
            border-left: 5px solid #3498db;
            padding: 22px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .callout p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #2d3436;
            font-weight: 500;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 22px;
        }
        .btn {
            display: inline-block;
            padding: 18px 38px;
            font-size: 1.25rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 200px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .download-btn {
            background: linear-gradient(135deg, #27ae60, #219653);
            color: #ffffff;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #219653, #1e8449);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
        }
        .login-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: #ffffff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #2980b9, #2471a3);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }
        .img-container {
            margin: 45px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .img-caption {
            background-color: #f8f9fa;
            padding: 18px;
            font-size: 1rem;
            color: #34495e;
            text-align: center;
            font-weight: 500;
        }
        .list {
            margin: 25px 0 35px 45px;
        }
        .list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 22px;
        }
        .list li::before {
            content: "✅";
            position: absolute;
            left: -30px;
            top: 2px;
            font-size: 1.1rem;
        }
        .stats-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .stats-card {
            background-color: #ffffff;
            padding: 28px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 4px solid #ffd32a;
        }
        .stats-value {
            font-size: 2.6rem;
            font-weight: 900;
            color: #0a3d62;
            margin-bottom: 12px;
        }
        .stats-label {
            font-size: 1.05rem;
            color: #34495e;
            font-weight: 500;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .review-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid #ffd32a;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background-color: #e8f4fd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: #0a3d62;
            font-weight: bold;
        }
        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3436;
        }
        .review-location {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 2px;
        }
        .review-rating {
            color: #ffd32a;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .review-text {
            font-size: 1.02rem;
            color: #34495e;
            line-height: 1.7;
            font-style: italic;
        }
        .guide-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 35px 0;
            border-bottom: 2px solid #dee2e6;
            padding-bottom: 12px;
        }
        .guide-tab {
            padding: 12px 22px;
            background-color: #f1f5f9;
            border: none;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #2d3436;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .guide-tab.active {
            background-color: #0a3d62;
            color: #ffffff;
        }
        .guide-content {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 35px;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 22px;
            margin: 35px 0;
        }
        .community-card {
            background-color: #ffffff;
            padding: 22px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            text-align: center;
        }
        .community-icon {
            font-size: 2.3rem;
            color: #0a3d62;
            margin-bottom: 12px;
        }
        .community-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 8px;
        }
        .community-desc {
            font-size: 0.95rem;
            color: #34495e;
        }
        .game-type-section, .tag-section {
            margin: 50px 0 30px;
        }
        .section-title {
            font-size: 1.3rem;
            color: #0a3d62;
            margin-bottom: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .game-types, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .game-types a, .tags a {
            color: #ffffff;
            background-color: #3c6382;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #ffd32a;
            color: #0a3d62;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        }
        .recommendation {
            background-color: #3c6382;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.8;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            color: #ffffff;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 2px solid #e0e0e0;
            font-size: 1rem;
            color: #636e72;
            margin-top: 60px;
        }
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 25px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 1.15rem;
                min-width: 180px;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0a3d62;
                padding: 30px 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.18);
            }
            .nav-menu.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 40px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 50px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 18px;
            }
            .btn {
                width: 100%;
                padding: 16px 20px;
                font-size: 1.1rem;
            }
            .stats-list {
                grid-template-columns: 1fr;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .img-container {
                margin: 35px 0;
            }
            p {
                font-size: 1rem;
                margin-bottom: 22px;
            }
            .list {
                margin: 20px 0 30px 35px;
            }
            .list li {
                margin-bottom: 16px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .logo emoji {
                font-size: 2.1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .footer {
                padding: 40px 0 25px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .game-types a, .tags a {
                padding: 8px 16px;
                font-size: 0.95rem;
            }
            .recommendation {
                padding: 20px;
                font-size: 1.05rem;
            }
        }
