* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #121212;
            color: #f0f0f0;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #e63946;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .logo {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            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-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #ffb703;
            font-size: 2.8rem;
            margin: 30px 0;
            text-align: center;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        h2 {
            color: #fb8500;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            border-left: 5px solid #e63946;
            padding-left: 15px;
        }
        h3 {
            color: #8ecae6;
            font-size: 1.7rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #8ecae6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #f8f9fa;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 20px 25px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #1e1e1e;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            border-left: 5px solid #ffb703;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .tag {
            background-color: #1d3557;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #457b9d;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0;
            padding: 20px;
            background-color: #1e1e1e;
            border-radius: 10px;
        }
        .game-type-link {
            color: #a8dadc;
            text-decoration: none;
            margin-right: 25px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .game-type-link:hover {
            color: #f1faee;
        }
        .footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .copyright {
            margin-top: 40px;
            font-size: 1rem;
            color: #a8dadc;
            border-top: 1px solid #457b9d;
            padding-top: 20px;
        }
        .emoji-highlight {
            font-size: 1.3rem;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                margin: 10px 15px 20px 0;
            }
            .image-container {
                margin: 30px 0;
            }
        }
