        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #f9f7f1;
            color: #2d2d2d;
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 40px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0b4619;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.7rem;
            font-weight: bold;
            color: #f1c40f;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 8px 12px;
            margin: 0 auto 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
        }
        nav ul li {
            margin: 0 8px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        nav ul li a:hover {
            background-color: #f1c40f;
            color: #0b4619;
        }
        nav ul li a.daman-link {
            background-color: #e67e22;
            color: white;
        }
        nav ul li a.daman-link:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        h1 {
            color: #0b4619;
            text-align: center;
            margin: 35px 0 25px;
            font-size: 2.3rem;
            padding-bottom: 12px;
            border-bottom: 3px solid #f1c40f;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #0b4619;
            margin: 45px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f1c40f;
            font-size: 1.8rem;
            position: relative;
            padding-left: 5px;
        }
        h2::before {
            content: "⚽";
            position: absolute;
            left: -30px;
            top: 5px;
        }
        h3 {
            color: #1e6031;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            background-color: #f0efe6;
            padding: 7px 14px;
            border-radius: 4px;
            display: inline-block;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            padding: 0 2px;
        }
        .highlight {
            font-weight: bold;
            color: #0b4619;
            background-color: #fef9e7;
            padding: 0 4px;
            border-radius: 2px;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px 18px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #e67e22;
            color: white;
        }
        .login-btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.18);
            border: 8px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            background-color: #f8f8f0;
            padding: 20px 15px;
            border-radius: 6px;
            text-align: center;
            border-left: 5px solid #0b4619;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.04);
        }
        .stat-number {
            font-size: 2.1rem;
            font-weight: bold;
            color: #0b4619;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #555;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .review {
            margin-bottom: 28px;
            padding-bottom: 22px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #1e6031;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .reviewer::before {
            content: "👤 ";
        }
        .rating {
            color: #f39c12;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #eafaf1;
            color: #0b4619;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 12px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d5f5e3;
            transform: translateY(-2px);
        }
        .game-type-section {
            margin: 45px 0;
        }
        .game-type {
            display: inline-block;
            margin: 0 10px 12px 0;
        }
        .game-type a {
            color: #0b4619;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border: 1px solid #0b4619;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            background-color: #0b4619;
            color: white;
        }
        footer {
            background-color: #0b4619;
            color: white;
            padding: 50px 0 25px;
            margin-top: 70px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-bottom: 45px;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 22px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1c40f;
            display: inline-block;
            background: none;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 14px;
        }
        .footer-links a {
            color: #eafaf1;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }
        .footer-links a:hover {
            color: #f1c40f;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #fef9e7;
            border-left: 5px solid #f39c12;
            padding: 22px;
            margin: 45px 0;
            border-radius: 0 4px 4px 0;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #1e6031;
            font-size: 0.9rem;
            color: #b8e186;
            line-height: 1.6;
        }
        ul, ol {
            margin: 25px 0 35px 40px;
        }
        li {
            margin-bottom: 12px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
                width: 90%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
                padding: 8px;
            }
            h1 {
                font-size: 1.9rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 0;
                margin: 35px 0 15px;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 1.25rem;
                margin: 25px 0 12px;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 12px auto;
                text-align: center;
                padding: 12px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            ul, ol {
                margin: 20px 0 30px 25px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
