* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #3d2b1f;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #b35c00;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: #ffeb3b;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            border-bottom: 2px solid #ffeb3b;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #b35c00;
            font-size: 2.5rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e65100;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ff9800;
        }
        h3 {
            color: #ff8f00;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🌶️ ";
            margin-right: 8px;
        }
        p {
            margin: 15px 0;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: #2196f3;
        }
        .btn-login:hover {
            background-color: #1976d2;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-left: 5px solid #ff9800;
        }
        .review {
            background-color: #fff3e0;
            border-left: 4px solid #ff9800;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
            position: relative;
        }
        .review::before {
            content: "💬";
            position: absolute;
            left: -15px;
            top: 15px;
            background-color: #ff9800;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tips-box {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-top: 5px solid #4caf50;
        }
        .tips-box p strong {
            color: #2e7d32;
        }
        .tag {
            display: inline-block;
            background-color: #ffcc80;
            color: #b35c00;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #ffb74d;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 10px 15px 10px 0;
            text-decoration: none;
            color: #e65100;
            font-weight: bold;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #b33900;
            text-decoration: underline;
        }
        .footer {
            background-color: #b35c00;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffeb3b;
            margin-bottom: 15px;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffeb3b;
            padding-bottom: 5px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #d77300;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .emoji-line {
            text-align: center;
            margin: 20px 0;
            letter-spacing: 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #b35c00;
                padding: 20px;
                border-top: 1px solid #d77300;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px dashed #d77300;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
                text-align: center;
            }
        }
