* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-container {
            background-color: #27ae60;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            text-align: center;
            color: white;
            font-size: 2rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-nav {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
        }
        .main-nav li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .main-nav li a:hover, .main-nav li a.active {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-link a {
            background-color: #f39c12;
            color: #2c3e50 !important;
        }
        .daman-link a:hover {
            background-color: #e67e22 !important;
        }
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #2c3e50;
            font-size: 1.9rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #27ae60;
            font-weight: 700;
        }
        h3 {
            color: #27ae60;
            font-size: 1.5rem;
            margin: 35px 0 20px;
            font-weight: 600;
        }
        p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .btn-group {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 38px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: inline-block;
        }
        .download-btn {
            background-color: #e74c3c;
            color: white;
        }
        .download-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(231,76,60,0.3);
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52,152,219,0.3);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            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: 30px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background-color: #ecf0f1;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #e74c3c;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #2c3e50;
            font-weight: 500;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 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: 20px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .localization-table th {
            background-color: #2c3e50;
            color: white;
            font-weight: 600;
        }
        .localization-table tr:hover {
            background-color: #f8f9fa;
        }
        .custom-list {
            margin-left: 40px;
            margin-bottom: 35px;
        }
        .custom-list li {
            font-size: 1.1rem;
            margin-bottom: 18px;
        }
        .tips-box {
            background-color: #f8f5e6;
            border-left: 5px solid #f39c12;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #d35400;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .event-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .event-card-content {
            padding: 25px;
        }
        .event-date {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .footer-container {
            background-color: #2c3e50;
            color: white;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #ecf0f1;
            border-bottom: 2px solid #27ae60;
            padding-bottom: 12px;
            margin-bottom: 25px;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 35px;
        }
        .game-type-nav a {
            color: #bdc3c7;
            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: 15px;
            margin-bottom: 35px;
        }
        .tag {
            background-color: #34495e;
            padding: 10px 20px;
            border-radius: 20px;
        }
        .tag a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .tag a:hover {
            text-decoration: underline;
        }
        .recommendation {
            font-size: 1.15rem;
            margin-bottom: 40px;
            line-height: 1.8;
            color: #bdc3c7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.7rem;
                margin-left: 20px;
                text-align: left;
                margin-bottom: 0;
            }
            .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: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            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: 15px;
                font-size: 0.95rem;
            }
            .img-container {
                margin: 30px 0;
            }
            .stats-card {
                padding: 25px;
            }
        }
