* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-container {
            background-color: #e63946;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .logo {
            text-align: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin: 10px 0;
        }
        .mobile-nav-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 22px;
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .main-nav a.daman-link {
            background-color: #1d3557;
        }
        .main-nav a.daman-link:hover {
            background-color: #2a4a77;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1d3557;
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 4px solid #e63946;
        }
        h2 {
            color: #1d3557;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #e63946;
        }
        h3 {
            color: #1d3557;
            font-size: 1.4rem;
            margin: 35px 0 15px;
        }
        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            color: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            min-width: 220px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #1d3557;
        }
        .login-btn {
            background-color: #e63946;
        }
        .img-container {
            text-align: center;
            margin: 45px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-box {
            background-color: #f1faee;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }
        .stat-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: #e63946;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #1d3557;
            font-weight: 600;
        }
        .tips-box {
            background-color: #f1faee;
            border-left: 6px solid #457b9d;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
        }
        .tips-box h4 {
            color: #1d3557;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .tags-section {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #a8dadc;
            color: #1d3557;
            padding: 10px 20px;
            border-radius: 50px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #457b9d;
            color: white;
        }
        .categories-section {
            margin: 50px 0;
        }
        .category {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        .category a {
            color: #457b9d;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .category a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f1faee;
            margin-bottom: 25px;
            border-bottom: 3px solid #e63946;
            padding-bottom: 12px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #f1faee;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #a8dadc;
            text-decoration: underline;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 20px;
                padding-bottom: 15px;
            }
            .main-nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
