* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c2c2c;
            background-color: #f8f8f0;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1a4b8c;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff7a00;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            color: #ff7a00;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1a4b8c;
            margin: 40px 0 30px;
            text-align: center;
            line-height: 1.4;
            padding: 0 10px;
        }
        h2 {
            font-size: 1.9rem;
            color: #e63946;
            margin: 45px 0 25px;
            border-bottom: 3px solid #e63946;
            padding-bottom: 10px;
            line-height: 1.5;
        }
        h3 {
            font-size: 1.5rem;
            color: #1a4b8c;
            margin: 35px 0 20px;
            line-height: 1.5;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #e63946;
            font-weight: 700;
        }
        .btn-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: center;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 200px;
        }
        .btn:hover {
            background-color: #c81d2a;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #0080ff;
        }
        .login-btn:hover {
            background-color: #0066cc;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 1px solid #e0e0d0;
        }
        ul {
            margin: 0 0 30px 35px;
        }
        ul li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        footer {
            background-color: #1a4b8c;
            color: #f0f0f0;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ff7a00;
            border-bottom: 1px solid #ff7a00;
            padding-bottom: 12px;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .game-types, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-types a, .tags a {
            color: #f0f0f0;
            background-color: #2d5a99;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #ff7a00;
            transform: translateY(-2px);
        }
        .recommendation {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #e0e0e0;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #2d5a99;
            font-size: 1rem;
            color: #d0d0d0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a4b8c;
                padding: 25px;
                box-shadow: 0 12px 15px rgba(0,0,0,0.25);
            }
            .nav-links li {
                margin: 15px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 25px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 18px;
            }
            p, ul li {
                font-size: 1.05rem;
            }
            .btn {
                width: 100%;
                padding: 14px 0;
                font-size: 1.05rem;
            }
            .img-container {
                margin: 30px 0;
            }
            footer {
                padding: 40px 0 20px;
            }
        }
