
        html, body {
            scrollbar-width: thin;
            scrollbar-color: #2563eb #f1f1f1;
            -webkit-tap-highlight-color: transparent;
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb {
            background: #2563eb;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #1e40af;
        }
        button, a, #menu-toggle {
            outline: none;
        }
        .bg-gradient {
            background: #ffffff;
            z-index: 10;
        }
        .loading-spinner {
            display: none;
        }
        .loading-spinner.active {
            display: flex;
        }
        .btn-download {
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            background-color: #22c55e;
            color: white;
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
        }
        .btn-download:hover {
            background-color: #15803d;
            transform: scale(1.05);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .game-card .btn-download {
            background-color: #2563eb;
        }
        .game-card .btn-download:hover {
            background-color: #22c55e;
            transform: scale(1.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .container {
            max-width: 1280px;
            width: 100%;
            padding-left: 0.25rem;
            padding-right: 0.25rem;
            margin-left: auto;
            margin-right: auto;
        }
        .header-text-container {
            max-width: 100%;
            width: 100%;
            min-height: 100px;
            background: linear-gradient(135deg, #ffffff, #f3f4f6);
            border: 2px solid #dc2626;
            padding: 1rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
            text-align: center;
            color: #1f2937;
            font-size: 1.1rem;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            position: relative;
            transition: all 0.3s ease;
        }
        .header-text-container:hover {
            transform: translateY(-2px);
        }
        .header-text-container::before, .header-text-container::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 8px solid transparent;
        }
        .header-text-container::before {
            top: -2px;
            left: -2px;
            border-top-color: #dc2626;
            border-left-color: #dc2626;
        }
        .header-text-container::after {
            bottom: -2px;
            right: -2px;
            border-bottom-color: #dc2626;
            border-right-color: #dc2626;
        }
        .ranking-wrapper {
            max-width: 100%;
            width: 100%;
            margin-bottom: 1rem;
        }
        .ranking-container {
            display: flex;
            justify-content: space-between;
            gap: 0.5rem;
            flex-wrap: nowrap;
            align-items: stretch;
            margin-top: 1rem;
            max-width: 360px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .rank-card {
            width: calc(33.33% - 0.33rem);
            min-height: 220px;
            border-radius: 12px;
            padding: 0.5rem;
            text-align: center;
            color: white;
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
        }
        .rank-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #fb923c, #f97316);
        }
        .rank-card.rank-2:hover {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #9ca3af, #6b7280);
        }
        .rank-card.rank-3:hover {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #60a5fa, #3b82f6);
        }
        .rank-card.rank-1 {
            order: 2;
            background: linear-gradient(135deg, #fb923c, #f97316);
            transform: scale(1.05);
        }
        .rank-card.rank-2 {
            order: 1;
            background: linear-gradient(135deg, #9ca3af, #6b7280);
        }
        .rank-card.rank-3 {
            order: 3;
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
        }
        .crown {
            width: 30px;
            height: auto;
            margin: 0 auto 0.5rem;
        }
        .logo-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 0.5rem;
            background: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.9);
        }
        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .rank-number {
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        .rank-label {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        .trusted {
            font-size: 0.7rem;
            font-weight: bold;
            margin-top: 0.5rem;
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        .game-list-container {
            max-width: 100%;
            width: 100%;
            margin-bottom: 1rem;
        }
        .game-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-left: 4px solid #2563eb;
            transition: transform 0.2s ease;
        }
        .game-card:hover {
            transform: translateY(-2px);
        }
        .game-image {
            width: 72px;
            height: 72px;
            object-fit: cover;
            border-radius: 4px;
        }
        .game-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .game-card p {
            font-size: 1rem;
            font-weight: 500;
        }
        .telegram-banner {
            max-width: 100%;
            width: 100%;
            min-height: 60px;
            background: #e6f0fa; /* Telegram light blue */
            border: 2px solid #0088cc; /* Telegram primary blue */
            border-radius: 12px;
            padding: 0.75rem;
            margin: 1.5rem auto;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            gap: 1rem;
        }
        .telegram-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .telegram-banner .text {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
        }
        .telegram-banner img {
            width: 24px;
            height: 24px;
            margin-right: 0.5rem;
        }
        .telegram-banner .button {
            transition: all 0.3s ease;
            background-color: #0088cc; /* Telegram primary blue */
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .telegram-banner .button:hover {
            background-color: #006699; /* Darker Telegram blue */
            transform: scale(1.05);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .notice-container {
            max-width: 100%;
            width: 100%;
            background: linear-gradient(135deg, #ffffff, #f3f4f6);
            border: 2px solid #dc2626;
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            color: #1f2937;
            font-size: 0.9rem;
            line-height: 1.4;
            position: relative;
            transition: all 0.3s ease;
        }
        .notice-container:hover {
            transform: translateY(-2px);
        }
        .notice-container::before, .notice-container::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 8px solid transparent;
        }
        .notice-container::before {
            top: -2px;
            left: -2px;
            border-top-color: #dc2626;
            border-left-color: #dc2626;
        }
        .notice-container::after {
            bottom: -2px;
            right: -2px;
            border-bottom-color: #dc2626;
            border-right-color: #dc2626;
        }
        .notice-container .icon-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .notice-container .e-font-icon-svg {
            width: 24px;
            height: 24px;
            fill: #dc2626;
            margin-right: 0.5rem;
        }
        .notice-container .important-notice {
            font-size: 1rem;
            font-weight: bold;
            text-decoration: underline;
            margin-bottom: 0.5rem;
        }
        .notice-container p {
            margin: 0.3rem 0;
            font-weight: 500;
        }
        .notice-container a {
            color: #2563eb;
            text-decoration: underline;
        }
        .notice-container a:hover {
            color: #1e40af;
        }
        .notice-container .centerio1 {
            color: #dc2626;
        }
        #mobile-menu {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: absolute;
            top: 4rem;
            right: 0.5rem;
            width: 220px;
            padding: 0.75rem;
            z-index: 20;
        }
        #mobile-menu::before {
            content: '';
            position: absolute;
            top: -16px;
            right: 12px;
            border: 8px solid transparent;
            border-bottom-color: #ffffff;
        }
        #mobile-menu li a {
            transition: background-color 0.2s ease, color 0.2s ease, opacity 0.3s ease;
        }
        #mobile-menu li a:hover {
            background-color: #f3f4f6;
        }
        #mobile-menu li a.active-page {
            background-color: #22c55e;
            color: white;
            border-radius: 8px;
        }
        #menu li a {
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        #menu li a:hover {
            background-color: #f3f4f6;
        }
        #menu li a.active-page {
            background-color: #22c55e;
            color: white;
            border-radius: 8px;
        }
        #menu-toggle i {
            transition: opacity 0.3s ease;
        }
        #menu-toggle i.toggle-animation {
            animation: menuIconToggle 0.3s ease-in-out;
        }
        @keyframes menuIconToggle {
            0% { opacity: 0; transform: rotate(90deg); }
            100% { opacity: 1; transform: rotate(0deg); }
        }
        @media (max-width: 768px) {
            .header-text-container {
                min-height: 80px;
                font-size: 0.9rem;
                padding: 0.75rem;
            }
            .game-list-container {
                max-width: 100%;
            }
            .game-card {
                padding: 0.5rem;
                min-height: 60px;
            }
            .game-image {
                width: 48px;
                height: 48px;
            }
            .game-card h3 {
                font-size: 1rem;
            }
            .game-card p {
                font-size: 0.8rem;
            }
            .telegram-banner {
                max-width: 360px;
                min-height: 50px;
                padding: 0.5rem;
            }
            .telegram-banner .text {
                font-size: 0.9rem;
            }
            .telegram-banner .button {
                padding: 0.4rem 0.75rem;
                font-size: 0.9rem;
            }
            .telegram-banner img {
                width: 20px;
                height: 20px;
            }
            .notice-container {
                max-width: 100%;
                padding: 0.75rem;
                font-size: 0.8rem;
            }
            .notice-container .important-notice {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            .header-text-container {
                min-height: 60px;
                font-size: 0.7rem;
                padding: 0.5rem;
            }
            .ranking-container {
                gap: 0.5rem;
            }
            .rank-card {
                width: calc(33.33% - 0.33rem);
                min-height: 220px;
                padding: 0.4rem;
            }
            .rank-card.rank-1 {
                transform: scale(1.05);
            }
            .crown {
                width: 30px;
            }
            .logo-circle {
                width: 45px;
                height: 45px;
            }
            .rank-number {
                font-size: 0.7rem;
            }
            .rank-label {
                font-size: 0.8rem;
            }
            .trusted {
                font-size: 0.6rem;
            }
            .btn-download {
                font-size: 0.6rem;
                padding: 0.3rem 0.6rem;
            }
            .game-card {
                padding: 0.5rem;
            }
            .game-image {
                width: 40px;
                height: 40px;
            }
            .game-card h3 {
                font-size: 0.9rem;
            }
            .game-card p {
                font-size: 0.75rem;
            }
            .telegram-banner {
                padding: 0.5rem;
            }
            .telegram-banner .text {
                font-size: 0.8rem;
            }
            .telegram-banner .button {
                font-size: 0.8rem;
            }
            .notice-container {
                font-size: 0.7rem;
                padding: 0.5rem;
            }
            .notice-container .e-font-icon-svg {
                width: 20px;
                height: 20px;
            }
            .notice-container .important-notice {
                font-size: 0.8rem;
            }
        }
        @keyframes fadeIn {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }
        
                .btn-tab {
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-weight: 500;
            padding: 8px 16px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            background-color: #ffffff;
            color: #374151;
            width: 50%;
            text-align: center;
            font-size: 1rem;
        }
        .btn-tab.active {
            background-color: #2563eb;
            color: white;
            border-color: #2563eb;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        }
        .btn-tab:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
        }
        .btn-tab i {
            margin-right: 6px;
        }
        .tab-container {
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
            background-color: #f3f4f6;
            padding: 6px;
            border-radius: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .game-list-header, .ranking-wrapper h2 {
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            text-align: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
            position: relative;
            display: block;
            width: fit-content;
        }
        .game-list-header.active, .ranking-wrapper h2 {
            opacity: 1;
            transform: translateY(0);
        }
        .game-list-header::after, .ranking-wrapper h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background-color: #2563eb;
        }
        .game-list-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .coming-soon-link {
            cursor: pointer;
            color: #2563eb;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .coming-soon-link:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }
        .search-bar {
            width: 100%;
            padding: 10px 16px 10px 40px;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            font-size: 1rem;
            color: #374151;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .search-bar:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
        }
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #2563eb;
            font-size: 1.25rem;
        }
       .footer {
            background-color: #ffffff;
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid #e0e0e0;
            font-family: 'Arial', sans-serif;
            color: #333333;
            font-size: 14px;
            width: 100%;
            position: relative;
            bottom: 0;
        }
        .footer p {
            margin: 0;
        }