        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2c3e50;
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a365d;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: #ffdd57;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Rajdhani', sans-serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #ffdd57;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a365d;
            margin-bottom: 30px;
            font-size: 2.5rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffdd57;
        }
        h2 {
            color: #1a365d;
            margin: 50px 0 25px;
            font-size: 1.8rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffdd57;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #e53e3e;
            bottom: -2px;
            left: 0;
        }
        h3 {
            color: #1a365d;
            margin: 35px 0 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚽";
            margin-right: 10px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e53e3e;
            padding: 0 3px;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
            justify-content: center;
        }
        .btn {
            padding: 16px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #22c55e;
            color: white;
        }
        .btn-login {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 6px solid white;
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #64748b;
            font-size: 1rem;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.15);
            z-index: 10;
            pointer-events: none;
            rotate: -25deg;
            font-family: 'Rajdhani', sans-serif;
        }
        .stats-box, .review-container, .feature-box {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            border-top: 5px solid #1a365d;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background-color: #f8fafc;
            border-radius: 10px;
            border-left: 5px solid #3b82f6;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #1a365d;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .stat-label {
            color: #64748b;
            font-size: 1.1rem;
        }
        .features-list {
            margin: 25px 0 25px 30px;
        }
        .features-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }
        .features-list li::before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 2px;
        }
        .review {
            border-bottom: 1px solid #f1f5f9;
            padding: 30px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #1e40af;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
        }
        .reviewer::after {
            content: "👤";
            margin-left: 10px;
        }
        .rating {
            color: #f59e0b;
            margin: 12px 0;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
        .tips-container {
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid #e53e3e;
        }
        .tip-box {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #cbd5e1;
        }
        .tip-box:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .tip-title {
            font-weight: bold;
            color: #1a365d;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .event-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-5px);
        }
        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 25px;
        }
        .event-title {
            font-weight: bold;
            color: #1a365d;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .event-date {
            color: #e53e3e;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .event-date::before {
            content: "📅";
            margin-right: 8px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .community-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background-color: white;
            border-radius: 8px;
            text-decoration: none;
            color: #1a365d;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .community-link:hover {
            background-color: #1a365d;
            color: white;
            transform: translateY(-3px);
        }
        .tags-container, .categories-container {
            margin: 40px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
        }
        .tag, .category {
            display: inline-block;
            background-color: #eff6ff;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            color: #1e40af;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover, .category:hover {
            background-color: #1e40af;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #ffdd57;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid #ffdd57;
            padding-bottom: 10px;
            display: inline-block;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ffdd57;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            font-size: 0.95rem;
            color: #cbd5e1;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
                margin-left: 0;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .btn {
                width: 90%;
                text-align: center;
                justify-content: center;
                padding: 14px 20px;
                font-size: 1.05rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-item {
                padding: 20px 15px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .features-list {
                margin-left: 20px;
            }
            .image-caption {
                max-width: 100%;
                font-size: 0.9rem;
            }
            .watermark {
                font-size: 3.5rem;
            }
        }
        .section-intro {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 30px;
            line-height: 1.9;
        }
        .important-note {
            background-color: #fff3cd;
            border-left: 5px solid #f59e0b;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .important-note p {
            margin-bottom: 0;
            font-weight: 500;
        }
        html {
            scroll-behavior: smooth;
        }
