* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        .header {
            background-color: #e63946;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffd700;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .daman-link {
            background-color: #ffd700;
            color: #e63946 !important;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .daman-link:hover {
            background-color: #fff;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 26px;
            color: #fff;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            color: #e63946;
            font-size: 36px;
            text-align: center;
            margin: 40px 0 25px;
            font-weight: 900;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1d3557;
            font-size: 28px;
            margin: 40px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e63946;
            font-weight: 800;
        }
        h3 {
            color: #1d3557;
            font-size: 24px;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        p {
            font-size: 18px;
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            color: #e63946;
            font-weight: 700;
        }
        .bold-text {
            font-weight: 700;
            color: #1d3557;
        }
        .btn-container {
            text-align: center;
            margin: 35px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            margin: 0 12px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #1d3557;
            color: #fff;
        }
        .btn-login:hover {
            background-color: #2a4a75;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #e63946;
            color: #fff;
        }
        .btn-download:hover {
            background-color: #c72c3a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        .stat-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background-color: #fff8f0;
            border-radius: 8px;
        }
        .stat-icon {
            font-size: 32px;
            color: #e63946;
            margin-right: 18px;
        }
        .stat-text h4 {
            font-size: 19px;
            color: #1d3557;
            margin-bottom: 5px;
        }
        .stat-text p {
            font-size: 16px;
            margin-bottom: 0;
            color: #555;
        }
        .custom-list {
            margin: 25px 0 25px 40px;
        }
        .custom-list li {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
        }
        .tabs-container {
            margin: 40px 0;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #ddd;
            margin-bottom: 25px;
        }
        .tab {
            padding: 12px 20px;
            font-size: 18px;
            font-weight: 600;
            color: #555;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .tab.active {
            color: #e63946;
            border-bottom: 3px solid #e63946;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .reviews-container {
            margin: 40px 0;
        }
        .review-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            display: flex;
            align-items: center;
        }
        .reviewer-name {
            font-size: 19px;
            font-weight: 700;
            color: #1d3557;
            margin-left: 12px;
        }
        .review-rating {
            color: #ffd700;
            font-size: 18px;
        }
        .review-text {
            font-size: 17px;
            color: #444;
        }
        .footer {
            background-color: #1d3557;
            color: #fff;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ffd700;
            position: relative;
            padding-bottom: 12px;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #e63946;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .game-type-link {
            color: #fff;
            text-decoration: none;
            padding: 8px 15px;
            background-color: #2a4a75;
            border-radius: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            background-color: #e63946;
            transform: translateY(-2px);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-link {
            color: #fff;
            text-decoration: none;
            padding: 8px 15px;
            background-color: #3a5f99;
            border-radius: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #e63946;
            transform: translateY(-2px);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 8px;
        }
        .recommendation {
            text-align: center;
            font-size: 18px;
            margin-bottom: 40px;
            padding: 20px;
            background-color: #2a4a75;
            border-radius: 10px;
        }
        .recommendation a {
            color: #ffd700;
            font-weight: 700;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #3a5f99;
            font-size: 16px;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: #e63946;
                padding: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 17px;
                width: 90%;
                margin: 0 0 15px;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
