* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff3e6c;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: inline-block;
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .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: #b22222;
            font-size: 2.5rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #ff3e6c;
            padding-bottom: 10px;
        }
        h2 {
            color: #8b0000;
            font-size: 2rem;
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #ff3e6c;
        }
        h3 {
            color: #cd5c5c;
            font-size: 1.5rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #ff3e6c;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 10px 5px;
            background-color: #ff3e6c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
        }
        .btn:hover {
            background-color: #e60039;
            transform: scale(1.05);
        }
        .btn-login {
            background-color: #22c55e;
        }
        .btn-login:hover {
            background-color: #16a34a;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #ffe4e1;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            color: #8b0000;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #ffc0cb;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
        }
        .game-type:hover {
            color: #ff3e6c;
            text-decoration: underline;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #ff3e6c;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
        }
