* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #ff6b6b, #ffcc5c);
            padding: 18px 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.8px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f8f9fa;
            border-bottom: 2px solid #f8f9fa;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #ffffff;
            cursor: pointer;
            z-index: 100;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d32f2f;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.8rem;
            border-bottom: 4px solid #ffd54f;
            padding-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #c62828;
            margin: 50px 0 25px;
            font-size: 2rem;
            border-left: 5px solid #ff8a65;
            padding-left: 18px;
        }
        h3 {
            color: #b71c1c;
            margin: 35px 0 20px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #ffb74d;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #424242;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #c62828;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #e53935;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #c62828;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .btn-login {
            background-color: #ffb74d;
            color: #212121;
        }
        .btn-login:hover {
            background-color: #ffa726;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 6px solid #43a047;
        }
        .review {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            border-top: 4px solid #ff9800;
        }
        .reviewer {
            font-style: italic;
            color: #616161;
            margin-top: 10px;
            display: block;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #c62828;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #ffcdd2;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
        }
        .game-type a {
            text-decoration: none;
            color: #1976d2;
            font-weight: 600;
            padding: 3px 0;
            border-bottom: 1px dashed #1976d2;
        }
        .game-type a:hover {
            border-bottom: 1px solid #1976d2;
        }
        footer {
            background-color: #263238;
            color: #eceff1;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd54f;
            border-left: none;
            padding-left: 0;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #546e7a;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b6b, #ffcc5c);
                padding: 30px 20px;
                gap: 20px;
                z-index: 99;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                margin: 10px 10px 20px 0;
                display: block;
                width: 100%;
                text-align: center;
            }
            .image-container {
                margin: 30px 0;
            }
        }
