* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e62e3e;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: white;
            font-size: 32px;
            font-weight: 900;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffd100;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        nav ul li .daman-link {
            background-color: #2a9d8f;
            padding: 8px 15px;
        }
        nav ul li .daman-link:hover {
            background-color: #21867a;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 36px;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e62e3e;
        }
        h2 {
            color: #1a365d;
            font-size: 28px;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #e62e3e;
        }
        h3 {
            color: #1a365d;
            font-size: 22px;
            margin: 35px 0 18px;
            font-weight: 700;
        }
        p {
            font-size: 18px;
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            color: #e62e3e;
            font-weight: 700;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-size: 19px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: inline-block;
        }
        .btn-download {
            background-color: #2a9d8f;
        }
        .btn-download:hover {
            background-color: #21867a;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #f4a261;
        }
        .btn-login:hover {
            background-color: #e78f4c;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .btn i {
            margin-right: 8px;
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
            border: 2px solid #f4a261;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            background-color: #fef6f0;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #f4a261;
        }
        .stat-number {
            font-size: 38px;
            font-weight: 900;
            color: #e62e3e;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 17px;
            color: #1a365d;
            font-weight: 600;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2a9d8f;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }
        .reviewer {
            font-size: 19px;
            font-weight: 700;
            color: #1a365d;
        }
        .rating {
            color: #ffd100;
            font-size: 20px;
        }
        ul {
            margin-left: 50px;
            margin-bottom: 25px;
        }
        ul li {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ffd100;
            padding-bottom: 10px;
            border-bottom: 2px solid #f4a261;
            display: inline-block;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-type {
            color: #f1f1f1;
            text-decoration: none;
            font-size: 17px;
            padding: 8px 18px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #e62e3e;
            color: white;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }
        .tag {
            color: white;
            text-decoration: none;
            font-size: 15px;
            padding: 6px 16px;
            background-color: #e62e3e;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #c41e2d;
            transform: translateY(-2px);
        }
        .recommendation {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #f1f1f1;
        }
        .recommendation strong {
            color: #ffd100;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 16px;
            color: #ccc;
        }
        .copyright a {
            color: #ffd100;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            nav ul li {
                padding: 8px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, ul li {
                font-size: 17px;
            }
            .btn {
                width: 90%;
                text-align: center;
                padding: 15px 20px;
                font-size: 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-number {
                font-size: 32px;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
