* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f0e8;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e63946;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffd700;
            font-size: 26px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 12px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 8px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #ffd700;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #e63946;
            font-size: 38px;
            margin: 35px 0 25px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1d3557;
            font-size: 28px;
            margin: 45px 0 20px;
            border-bottom: 3px solid #457b9d;
            padding-bottom: 10px;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 60px;
            height: 3px;
            background-color: #e63946;
        }
        h3 {
            color: #457b9d;
            font-size: 22px;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #e63946;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #333;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #1d3557;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #2b4865;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #457b9d;
        }
        .btn-login:hover {
            background-color: #588fb8;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 2px solid #fff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #e63946;
        }
        .review {
            background-color: #f1faee;
            border-left: 5px solid #4cc9f0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 16px;
        }
        .tag {
            display: inline-block;
            background-color: #f1faee;
            padding: 6px 12px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            color: #1d3557;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #457b9d;
        }
        .tag:hover {
            background-color: #e0f7fa;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
            text-decoration: none;
            color: #1d3557;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #e63946;
            border-bottom: 2px solid #e63946;
        }
        .footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-left: 4px solid #ffd700;
            margin-bottom: 20px;
        }
        .footer-links {
            margin: 20px 0;
            flex-wrap: wrap;
            display: flex;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 15px;
            color: #a8dadc;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .nav-links a {
                font-size: 18px;
                display: block;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin: 25px 0;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 12px 0;
                padding: 15px;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-box, .review {
                padding: 20px;
                margin: 20px 0;
            }
        }
