        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e63946;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px 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 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            text-decoration: none;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-games-link {
            background-color: #457b9d;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1d3557;
            text-align: center;
            font-size: 2.6rem;
            margin-bottom: 35px;
            padding-bottom: 12px;
            border-bottom: 4px solid #e63946;
        }
        h2 {
            color: #1d3557;
            font-size: 1.8rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 5px solid #e63946;
        }
        h3 {
            color: #457b9d;
            font-size: 1.4rem;
            margin: 32px 0 18px;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .btn-section {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #2a9d8f;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .login-btn {
            background-color: #f4a261;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.12);
        }
        .stats-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-left: 6px solid #457b9d;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f1faee;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2.1rem;
            font-weight: 800;
            color: #e63946;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #2d3748;
            font-weight: 500;
        }
        .reviews-container {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .review-card {
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid #f0f0f0;
        }
        .review-card:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer-name {
            font-weight: 700;
            color: #457b9d;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .review-rating {
            color: #f4a261;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .review-text {
            font-size: 1.05rem;
            color: #4a5568;
        }
        .tips-list {
            margin: 25px 0 25px 40px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d3748;
        }
        .tips-list li strong {
            color: #1d3557;
        }
        .tags-section {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e9c46a;
            color: #264653;
            padding: 8px 20px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f4a261;
            color: #fff;
        }
        .game-types-section {
            margin: 50px 0;
        }
        .type-link {
            color: #1d3557;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .type-link:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: #fff;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #ffd700;
        }
        .daman-recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 30px;
            font-size: 0.95rem;
            color: #e2e8f0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 22px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                width: 100%;
                margin-top: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn-section {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 80%;
                text-align: center;
                justify-content: center;
            }
            .type-link {
                display: block;
                margin-bottom: 15px;
                margin-right: 0;
            }
        }
