* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1a202c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-container {
            background-color: #0f4c81;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffcc00;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: #ffcc00;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffcc00;
        }
        h2 {
            color: #0f4c81;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffcc00;
        }
        h3 {
            color: #1e3a8a;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3:before {
            content: '💸';
            margin-right: 10px;
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        .download-btn {
            background-color: #22c55e;
            color: #ffffff;
        }
        .login-btn {
            background-color: #3b82f6;
            color: #ffffff;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(1px);
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            margin-bottom: 12px;
            transition: transform 0.4s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            color: #666666;
            font-style: italic;
            font-size: 0.95rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.25);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
            color: #0f4c81;
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #ffcc00;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: bold;
            color: #0f4c81;
            font-size: 1.05rem;
        }
        .stat-value {
            font-size: 1.05rem;
            color: #1a202c;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #3b82f6;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #0f4c81;
            font-size: 1.05rem;
        }
        .rating {
            color: #ffcc00;
            font-size: 1.1rem;
        }
        .game-categories {
            margin: 45px 0 25px;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .category-link {
            background-color: #3b82f6;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
        }
        .category-link:hover {
            background-color: #0f4c81;
        }
        .tag-section {
            margin: 40px 0 30px;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag-link {
            background-color: #dbeafe;
            color: #0f4c81;
            padding: 6px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #bfdbfe;
            color: #0f4c81;
        }
        .tips-container {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #e2e8f0;
        }
        .tip-item {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        .tip-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .tip-number {
            display: inline-block;
            background-color: #ffcc00;
            color: #0f4c81;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
            margin-right: 10px;
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .event-details {
            padding: 20px;
        }
        .event-date {
            display: inline-block;
            background-color: #eff6ff;
            color: #0f4c81;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        footer {
            background-color: #0f4c81;
            color: #ffffff;
            padding: 50px 20px 25px;
            margin-top: 70px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .footer-column h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bfdbfe;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.02rem;
        }
        .footer-links a:hover {
            color: #ffcc00;
            padding-left: 8px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            grid-column: 1 / -1;
            text-align: center;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 0.95rem;
            color: #bfdbfe;
            grid-column: 1 / -1;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 5px 8px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .btn {
                width: 100%;
                padding: 12px 25px;
            }
            .footer-wrapper {
                grid-template-columns: 1fr;
            }
            .recommendation, .copyright {
                grid-column: 1;
            }
        }
