* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f6f0;
            padding-bottom: 40px;
        }
        .header {
            background-color: #e63946;
            color: white;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .mobile-nav-btn {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: block;
            margin-left: auto;
        }
        .nav-links {
            list-style: none;
            display: none;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        .nav-links.active {
            display: flex;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            display: block;
        }
        .nav-links li a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #e63946;
            font-size: 32px;
            text-align: center;
            margin: 30px 0;
            border-bottom: 2px solid #e63946;
            padding-bottom: 10px;
        }
        h2 {
            color: #1d3557;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #e63946;
        }
        h3 {
            color: #2a9d8f;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin: 15px 0;
            font-size: 18px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            margin: 10px 5px;
            text-align: center;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #c1121f;
        }
        .btn-login {
            background-color: #2a9d8f;
        }
        .btn-login:hover {
            background-color: #21867a;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .stats-table th, .stats-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .stats-table th {
            background-color: #1d3557;
            color: white;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f1faee;
        }
        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            margin: 20px 0;
        }
        .reviewer {
            font-weight: bold;
            color: #1d3557;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffb703;
            margin-bottom: 10px;
        }
        .tips-list {
            list-style: disc;
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin: 10px 0;
            font-size: 18px;
        }
        .game-tags {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #f1faee;
            color: #1d3557;
            text-decoration: none;
            border-radius: 20px;
            margin: 5px;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #e63946;
            color: white;
        }
        .game-types {
            margin: 30px 0;
        }
        .type-link {
            color: #2a9d8f;
            text-decoration: none;
            margin: 0 10px;
            font-size: 18px;
        }
        .type-link:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #1d3557;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav-links {
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin-top: 0;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 24px;
            }
            p {
                font-size: 19px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 18px;
            }
        }
