* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2d2d2d;
            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;
            color: white;
            font-size: 1.9rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 12px;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-nav {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 28px;
            flex-wrap: wrap;
        }
        .main-nav li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 6px 12px;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        .main-nav li a:hover, .main-nav li a.active {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link a {
            background-color: #ffb703;
            color: #2d2d2d !important;
        }
        .daman-link a:hover {
            background-color: #fb8500 !important;
        }
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #1d3557;
            text-align: center;
            font-size: 2.4rem;
            margin-bottom: 40px;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1d3557;
            font-size: 1.8rem;
            margin: 50px 0 22px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e63946;
            font-weight: 700;
        }
        h3 {
            color: #457b9d;
            font-size: 1.4rem;
            margin: 35px 0 18px;
            font-weight: 600;
        }
        p {
            font-size: 1.1rem;
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .btn-group {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #e63946;
            color: white;
        }
        .download-btn:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(230,57,70,0.3);
        }
        .login-btn {
            background-color: #457b9d;
            color: white;
        }
        .login-btn:hover {
            background-color: #1d3557;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(69,123,157,0.3);
        }
        .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.12);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f1faee;
            border-radius: 10px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e63946;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #1d3557;
            font-weight: 500;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .localization-table th, .localization-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .localization-table th {
            background-color: #1d3557;
            color: white;
            font-weight: 600;
        }
        .localization-table tr:hover {
            background-color: #f9f9f9;
        }
        .custom-list {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        .custom-list li {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        .footer-container {
            background-color: #1d3557;
            color: white;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f1faee;
            border-bottom: 2px solid #457b9d;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-type-nav a {
            color: #a8dadc;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type-nav a:hover {
            color: white;
            text-decoration: underline;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }
        .tag {
            background-color: #457b9d;
            padding: 8px 18px;
            border-radius: 20px;
        }
        .tag a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .tag a:hover {
            text-decoration: underline;
        }
        .recommendation {
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #457b9d;
            font-size: 0.95rem;
            color: #a8dadc;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.6rem;
                margin-left: 20px;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                margin-top: 25px;
                padding-bottom: 20px;
            }
            .main-nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p, .custom-list li {
                font-size: 1.05rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 20px;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .localization-table th, .localization-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
        }
