        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #fef7fb;
            color: #2c1e30;
            padding-bottom: 60px;
            scroll-behavior: smooth;
        }
        header {
            background: linear-gradient(135deg, #ff2e63, #08d9d6);
            padding: 18px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffe066;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffe066;
            border-bottom: 2px solid #ffe066;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        .main-content {
            padding: 40px 0;
        }
        h1 {
            font-size: 42px;
            color: #ff2e63;
            margin-bottom: 25px;
            border-bottom: 4px solid #08d9d6;
            padding-bottom: 12px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 32px;
            color: #08d9d6;
            margin: 40px 0 20px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🎬";
            position: absolute;
            left: -5px;
        }
        h3 {
            font-size: 24px;
            color: #ff2e63;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            max-width: 100%;
            line-height: 1.8;
            color: #332938;
        }
        .btn-container {
            margin: 30px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff2e63;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            margin: 10px 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #e02758;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #25d366;
        }
        .btn-login:hover {
            background-color: #1ebe57;
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 4px solid #ffe066;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff0f5, #e8f8f5);
            border-left: 5px solid #ff2e63;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .highlight-box strong {
            color: #ff2e63;
            font-size: 18px;
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 16px;
        }
        footer {
            background: linear-gradient(135deg, #2c1e30, #4a2f50);
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        .footer-links a {
            color: #ffe066;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #08d9d6;
            text-decoration: underline;
        }
        .game-categories {
            margin: 20px 0;
        }
        .game-categories a {
            margin-right: 15px;
            color: #08d9d6;
            text-decoration: none;
            font-weight: 600;
        }
        .game-categories a:hover {
            text-decoration: underline;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #08d9d6;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #07b8b5;
            transform: scale(1.05);
        }
        .copyright {
            margin-top: 30px;
            font-size: 15px;
            color: #d1c4e9;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a2f50;
        }
        .recommendation {
            background-color: #fff3e0;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid #ffe066;
        }
        .recommendation h4 {
            color: #ff2e63;
            font-size: 20px;
            margin-bottom: 10px;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #fef7fb;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff2e63;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e02758;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .highlight-box, h1, h2, .game-img {
            animation: fadeInUp 0.6s ease-out;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                background: linear-gradient(135deg, #ff2e63, #e02758);
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                padding: 25px;
                gap: 20px;
                z-index: 999;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 16px;
            }
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px 0;
            }
        }
        img {
            loading: lazy;
            max-width: 100%;
            height: auto;
        }
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #ff2e63;
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
