* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e63946;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        .main-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ffd700;
            margin-bottom: 30px;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.3;
        }
        h2 {
            color: #4cc9f0;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-left: 5px solid #ffd700;
            padding-left: 15px;
            line-height: 1.4;
        }
        h3 {
            color: #f72585;
            margin: 25px 0 15px;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #f0f0f5;
        }
        .highlight {
            font-weight: bold;
            color: #ffd700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #4361ee;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #3a0ca3;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: #e63946;
        }
        .btn-login:hover {
            background-color: #d62828;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            transition: transform 0.3s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border-top: 4px solid #ffd700;
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stats-box p::before {
            content: "•";
            color: #ffd700;
            font-size: 1.5rem;
        }
        .tag {
            display: inline-block;
            background-color: #16213e;
            color: #4cc9f0;
            padding: 8px 15px;
            border-radius: 30px;
            margin: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            border: 1px solid #4cc9f0;
        }
        .tag:hover {
            background-color: #4cc9f0;
            color: #16213e;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #f72585;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .game-type:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .footer {
            max-width: 1200px;
            margin: 50px auto 30px;
            padding: 0 20px;
            border-top: 3px solid #ffd700;
            padding-top: 30px;
        }
        .copyright {
            margin-top: 30px;
            color: #a0a0a5;
            font-size: 1rem;
            text-align: center;
            padding: 15px 0;
            border-top: 1px solid #333;
        }
        .tips-box {
            background-color: rgba(76, 201, 240, 0.1);
            border-left: 4px solid #4cc9f0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #4cc9f0;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid #ffd700;
            padding-left: 15px;
            margin: 25px 0;
            color: #e0e0e5;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .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: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                margin: 10px 5px;
                display: block;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
        }
