* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #ff6b00;
            color: white;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd00;
            border-bottom: 2px solid #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            color: #ff6b00;
            margin: 40px 0 30px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #ff6b00;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-bottom: 3px solid #2d2d2d;
            padding-bottom: 12px;
        }
        h3 {
            color: #2d2d2d;
            margin: 35px 0 20px;
            font-size: 1.6rem;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: "•";
            color: #ff6b00;
            position: absolute;
            left: 0;
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
        }
        .highlight {
            font-weight: bold;
            color: #ff6b00;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #ff6b00;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: 0.3s;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(255,107,0,0.3);
        }
        .btn:hover {
            background-color: #e05a00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,107,0,0.4);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .tag {
            display: inline-block;
            background-color: #fff0e0;
            padding: 6px 18px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #ff6b00;
            font-size: 0.95rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #ffe0cc;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 20px 12px 0;
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 600;
            font-size: 1.05rem;
            transition: 0.3s;
        }
        .game-type:hover {
            color: #ff6b00;
            transform: translateX(5px);
        }
        .footer {
            background-color: #2d2d2d;
            color: white;
            padding: 50px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffdd00;
            border-bottom: 2px solid #ffdd00;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #ff6b00;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links li {
                margin: 18px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 10px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1.1rem;
                margin: 10px 10px 20px 0;
                width: 100%;
                text-align: center;
            }
            .image-container {
                margin: 30px 0;
            }
        }
