* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f2ea;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a5f7a;
            color: white;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .mobile-nav-btn {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            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 10px;
            display: block;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #1a5f7a;
            font-size: 32px;
            text-align: center;
            margin: 30px 0;
            border-bottom: 3px solid #e67e22;
            padding-bottom: 15px;
        }
        h2 {
            color: #1a5f7a;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #e67e22;
        }
        h3 {
            color: #e67e22;
            font-size: 22px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #e67e22;
        }
        p {
            margin: 18px 0;
            font-size: 18px;
            text-align: justify;
            color: #333;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            margin: 12px 8px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #27ae60;
        }
        .btn-login:hover {
            background-color: #219653;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .image-caption {
            text-align: center;
            font-size: 16px;
            color: #666;
            margin-top: 12px;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            border: 1px solid #ddd;
            padding: 14px 12px;
            text-align: left;
        }
        .stats-table th {
            background-color: #1a5f7a;
            color: white;
            font-weight: bold;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f5f0;
        }
        .stats-table tr:hover {
            background-color: #f0e9e0;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin: 25px 0;
            border-top: 4px solid #e67e22;
        }
        .reviewer {
            font-weight: bold;
            color: #1a5f7a;
            margin-bottom: 8px;
            font-size: 19px;
        }
        .rating {
            color: #f39c12;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .tips-list {
            list-style: none;
            margin: 25px 0 25px 20px;
        }
        .tips-list li {
            margin: 15px 0;
            font-size: 18px;
            position: relative;
            padding-left: 30px;
        }
        .tips-list li:before {
            content: "•";
            color: #e67e22;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .game-tags {
            margin: 50px 0;
            text-align: center;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f1ede6;
            color: #1a5f7a;
            text-decoration: none;
            border-radius: 30px;
            margin: 8px 6px;
            font-size: 16px;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .tag:hover {
            background-color: #1a5f7a;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .game-types {
            margin: 40px 0;
            text-align: center;
        }
        .type-link {
            color: #1a5f7a;
            text-decoration: none;
            margin: 0 12px;
            font-size: 18px;
            font-weight: 500;
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .type-link:hover {
            color: #e67e22;
            border-bottom: 2px solid #e67e22;
        }
        .footer {
            background-color: #1a5f7a;
            color: white;
            padding: 40px 20px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #f39c12;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin: 10px 0;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #f39c12;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #3498db;
            font-size: 16px;
            color: #d0d0d0;
        }
        .community-section {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background-color: #fff8e1;
            border-left: 5px solid #f39c12;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight-box p {
            margin: 0;
            color: #5d4037;
            font-size: 18px;
        }
        .quote {
            font-style: italic;
            color: #555;
            border-left: 3px solid #1a5f7a;
            padding-left: 20px;
            margin: 25px 0;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav-links {
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin-top: 0;
                gap: 20px;
            }
            h1 {
                font-size: 40px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
            p {
                font-size: 19px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 19px;
                margin: 15px 10px;
            }
            .footer-content {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }
