@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.08);
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.08);
    --neon-pink: #ec4899;
    --neon-pink-glow: rgba(236, 72, 153, 0.08);
    --danger: #ef4444;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-soft: #e2e8f0;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-glow: 0 8px 30px rgba(99, 102, 241, 0.05);
    --shadow-accent-glow: 0 8px 30px rgba(16, 185, 129, 0.05);
    --shadow-pink-glow: 0 8px 30px rgba(236, 72, 153, 0.05);
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

/* Premium Custom Scrollbar for Gaming Aesthetic */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--neon-pink));
    border-radius: 99px;
    border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #818cf8, #f472b6);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-wrapper,
.page-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 15px 100px;
}

/* HEADER */
.header {
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-link {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.logo-top {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease;
}

.header-logo-link:hover .logo-top {
    transform: rotate(5deg) scale(1.05);
}

.header-text {
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.telegram-top {
    width: 120px;
    height: auto;
    transition: transform 0.2s ease;
}

.telegram-top:hover {
    transform: scale(1.05);
}

.header-cta {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.icon {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-main);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* MAIN NAV */
.navbar {
    background: rgba(8, 10, 24, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 65px;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.navbar-inner::-webkit-scrollbar {
    display: none;
}

.navbar a {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.navbar a:hover {
    color: var(--neon-pink) !important;
    background: rgba(236, 72, 153, 0.04) !important;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.4) !important;
}

.navbar a.active {
    color: #ffffff !important;
    border-bottom: 2px solid var(--primary) !important;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.1), transparent) !important;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5) !important;
}

/* MOBILE MENU */
.menu-container {
    display: none;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 5px;
}

.menu-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
    margin: 6px;
    box-shadow: var(--shadow-soft);
}

.menu-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* HERO BANNER */
.hero {
    margin-top: 20px;
    margin-bottom: 30px;
}

.hero-card {
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-banner {
    position: relative;
}

.hero-banner img {
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
    filter: brightness(0.9);
}

.hero-badge {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-soft);
    color: #fff;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
}

.hero-badge i {
    color: var(--neon-pink);
    filter: drop-shadow(0 0 4px var(--neon-pink-glow));
}

.hero-content {
    padding: 24px 20px;
}

.hero-title {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    max-width: 820px;
    margin: 0 auto 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stat-item {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
}

.hero-stat-item i {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 13px 28px;
    border-radius: 99px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25), 0 0 0 2px rgba(99, 102, 241, 0.1);
    background: linear-gradient(135deg, #818cf8 0%, var(--primary-dark) 100%);
}

.hero-btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.hero-btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    padding: 13px 28px;
    border-radius: 99px;
    font-size: 14.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:active {
    transform: translateY(0) scale(0.98);
}


/* CONTENT BLOCKS & SECTIONS */
.section {
    margin-bottom: 40px;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 14px;
    padding-block: 4px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 18px;
    margin-top: 4px;
}

/* SEARCH FILTER */
.search-container {
    margin: 20px 0 15px;
    position: relative;
}

.search-input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    padding: 14px 20px 14px 50px;
    border-radius: 99px;
    color: var(--text-main);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: #ffffff;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

/* TABS */
.tabs {
    display: flex;
    margin: 20px 0 15px;
    border-radius: 99px;
    background: #f1f5f9;
    border: 1px solid var(--border-soft);
    padding: 4px;
}

.tabs .tab {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    padding: 10px;
    border-radius: 99px;
    cursor: pointer;
    border: none;
    color: var(--text-muted);
    background: transparent;
    transition: all 0.25s ease;
}

.tabs .tab.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.content {
    display: none;
}

.content.active {
    display: block;
}

/* APP LIST CARDS */
.app-list-yono-games {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.app-item-yono-games {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    padding: 12px 16px;
    counter-increment: app-counter;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.app-item-yono-games:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.35);
    background-color: var(--bg-card-hover);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.app-item-yono-games::before {
    content: counter(app-counter) ".";
    font-weight: 800;
    font-size: 14px;
    margin-right: 10px;
    color: var(--text-muted);
    min-width: 20px;
    text-align: right;
}

.app-icon-yg-container {
    margin-right: 14px;
    flex-shrink: 0;
}

.app-icon_dont_copy_created_by_yono-games,
.app-icon_dont_copy_created_by_allappstore_com {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.app-item-yono-games:hover .app-icon_dont_copy_created_by_yono-games {
    transform: scale(1.05);
}

.app-details_dont_copy_created_by_yono-games,
.app-details_dont_copy_created_by_allappstore_com {
    flex-grow: 1;
    margin-right: 12px;
}

.app-title_dont_copy_created_by_yono-games,
.app-title_dont_copy_created_by_allappstore_com {
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 800;
    color: #ffffff;
}

.bonus-amount_dont_copy_created_by_yono-games,
.bonus-amount_dont_copy_created_by_allappstore_com {
    color: #f472b6;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 4px;
}

.withdrawal-amount_dont_copy_created_by_yono-games,
.withdrawal-amount_dont_copy_created_by_allappstore_com {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}

.download-count {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12px;
    margin-top: 4px;
}

.download-button_dont_copy_created_by_yono-games,
.download-button_dont_copy_created_by_allappstore_com {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 99px;
    font-weight: 700;
    font-size: 13.5px;
    color: #fff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    cursor: pointer;
    min-width: 110px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.download-button_dont_copy_created_by_yono-games i,
.download-button_dont_copy_created_by_allappstore_com i {
    margin-right: 6px;
}

.download-button_dont_copy_created_by_yono-games:hover,
.download-button_dont_copy_created_by_allappstore_com:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45), 0 0 0 2px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.download-button_dont_copy_created_by_yono-games:active,
.download-button_dont_copy_created_by_allappstore_com:active {
    transform: translateY(0) scale(0.98);
}

/* APP DETAILS SUBPAGES GRID */
.app-container2 {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.app-container2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.app-header1 {
    display: flex;
    column-gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 20px;
}

.header-image img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.header-content12 h1 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.header-content12 .app-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

.tagline-chip {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    margin-top: 8px;
}

.app-info {
    border-block: 1px solid var(--border-soft);
    padding: 15px 0;
    margin-bottom: 20px;
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 10px;
}

.rating-block,
.download-block,
.reviews-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-block span,
.download-block span,
.reviews-block span {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}

.rating-block i {
    color: #f59e0b;
}

.download-block i {
    color: var(--primary);
}

.reviews-block i {
    color: var(--accent);
}

.rating-block .text1,
.download-block .text1,
.reviews-block .text1 {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.bonus-pill {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.25);
    color: #f472b6 !important;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.cta-wrap {
    text-align: center;
    margin: 15px 0;
}

.install-button {
    width: 100%;
    max-width: 320px;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #047857 100%);
    color: #ffffff;
    border: none;
    border-radius: 99px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-accent-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    transition: all 0.25s ease;
}

.install-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.custom-button,
.custom-buttonW {
    width: 100%;
    max-width: 320px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 99px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    transition: all 0.2s ease;
}

.custom-button i {
    color: #0088cc;
}

.custom-buttonW i {
    color: #25d366;
}

.custom-button:hover,
.custom-buttonW:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.relatedapps {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px;
    text-align: center;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.relatedapps i {
    color: var(--primary);
}

/* APP LIST STRIP (GAMES SUBPAGE RELATED) */
.app-list_dont_copy_created_by_allappstore_com {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px;
}

.app-item_dont_copy_created_by_allappstore_com {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

/* SIMPLE TABLE */
#iTable {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

#iTable th,
#iTable td {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
}

#iTable th {
    background-color: #f1f5f9;
    color: var(--text-main);
    font-weight: 700;
    text-align: left;
}

#iTable tr:nth-child(even) {
    background-color: #f8fafc;
}

#iTable td:first-child {
    font-weight: 700;
    color: var(--text-main);
}

#iTable a {
    color: var(--accent);
    font-weight: 700;
}

/* LONG SEO CONTENT & BODYLOOK */
.bodylook,
.long-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.bodylook:hover,
.long-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
}

.bodylook h2,
.long-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

.bodylook p,
.long-content p {
    line-height: 1.8;
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.bodylook ul,
.bodylook ol,
.long-content ul,
.long-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.bodylook li,
.long-content li {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

.bodylook strong,
.long-content strong {
    color: var(--text-main);
}

.allappstore_img {
    margin: 15px auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

/* RED DISCLAIMER BOX */
.red-disclaimer-box {
    background-color: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 16px;
    margin: 25px 0 15px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.08);
}

.centerio {
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
    color: #fca5a5;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
}

.centerio1 {
    font-weight: 700;
    color: #ffffff;
}

.red-disclaimer-box a {
    color: #fca5a5;
    text-decoration: underline;
}

/* FAQ ACCORDION */
.container8262 {
    background: rgba(15, 23, 42, 0.35);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-soft);
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.question8262 {
    position: relative;
    font-size: 14.5px;
    color: var(--text-main);
    background-color: rgba(99, 102, 241, 0.04);
    border: 1px solid var(--border-soft);
    padding: 12px 35px 12px 15px;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.question8262:hover {
    background-color: rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.question8262::before {
    content: "Q: ";
    color: var(--primary);
    font-weight: 800;
}

.question8262::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}

.answer8262 {
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    margin-top: 4px;
    display: none;
    line-height: 1.7;
}

.answer8262::before {
    content: "A: ";
    color: var(--accent);
    font-weight: 800;
}

.answer8262.show {
    display: block;
}

/* TAG MARQUEE / SLIDER */
.yono-games_Slider,
.tag-strip {
    border-radius: 30px;
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.yono-games_Slider .AllAppStore_ticker,
.tag-strip-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.yono-games_Slider .AllAppStore_ticker .title,
.tag-strip-title {
    width: 20%;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    color: #ffffff;
    text-align: center;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    border-radius: 30px 0 0 30px;
}

.yono-games_Slider .AllAppStore_ticker .news,
marquee {
    width: 80%;
    margin: 0;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
}

/* TELEGRAM & SHARE CARDS */
.group-card,
.group-card1 {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.telegram-card {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.05);
}

.telegram-card1 {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.icon-telegram,
.icon-telegram1 {
    font-size: 24px;
}

.icon-telegram {
    color: #0284c7;
}

.icon-telegram1 {
    color: var(--accent);
}

.join-text,
.join-text1 {
    margin-left: 10px;
    font-weight: 700;
    font-size: 14.5px;
}

.join-text {
    color: #38bdf8;
}

.join-text1 {
    color: #34d399;
    cursor: pointer;
}

.seoquake-nofollow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 99px;
    background: #0284c7;
    color: #ffffff !important;
    column-gap: 5px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.telegram-card1 .seoquake-nofollow {
    background: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.seoquake-nofollow:hover {
    transform: scale(1.03);
}

/* FOOTER */
footer {
    margin-top: 30px;
}

.main-background {
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    border-radius: 24px;
    padding: 24px 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.center-text {
    text-align: center;
    line-height: 1.8;
    font-size: 13.5px;
    font-weight: 600;
    margin: 20px 0;
}

.link-style,
.footer-link {
    text-decoration: none;
    color: var(--text-muted);
}

.link-style:hover,
.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.small-center-text {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid var(--border-soft);
    padding-top: 15px;
}

.footer-tg-heading {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

/* GLOBAL STICKY SIDE BUTTONS WITH HIGH QUALITY SVGS & RIPPLES */
.side-buttons-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    z-index: 9999;
}

.side-floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
}

.side-floating-btn svg {
    fill: #ffffff;
    transition: transform 0.3s ease;
    z-index: 2;
}

.side-floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.side-floating-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.telegram-btn {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
}

.btn-tooltip {
    position: absolute;
    right: 64px;
    background: #0f172a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #0f172a;
}

.side-floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 60px;
}

.btn-ripple {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 1;
}

.telegram-btn .btn-ripple {
    border-color: rgba(56, 189, 248, 0.4);
    animation: sideRipple 2s infinite ease-out;
}

.whatsapp-btn .btn-ripple {
    border-color: rgba(74, 222, 128, 0.4);
    animation: sideRipple 2s infinite ease-out 1s;
}

@keyframes sideRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
    .header-text {
        font-size: 20px;
    }

    .icon {
        display: block;
    }

    .navbar {
        display: none;
    }

    .telegram-top {
        width: 100px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-stat-item {
        padding: 6px 14px;
        font-size: 12px;
    }

    .install-button,
    .custom-button,
    .custom-buttonW {
        max-width: 100%;
    }

    .bodylook,
    .long-content {
        padding: 16px;
    }

    .bodylook h2,
    .long-content h2 {
        font-size: 18px;
    }

    .tag-strip-title,
    .yono-games_Slider .AllAppStore_ticker .title {
        width: 30%;
        font-size: 12px;
    }

    .tag-strip-title+marquee,
    marquee {
        width: 70%;
    }
}

/* Centralized Content Pages Styling */
.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    margin-top: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.content-card h2,
.content-card h3,
.content-card h4 {
    color: var(--text-main);
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 700;
}

.content-card h2 {
    font-size: 26px;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 10px;
}

.content-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 15px;
}

.content-card ul,
.content-card ol {
    margin-left: 24px;
    margin-bottom: 22px;
    color: var(--text-muted);
}

.content-card li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.content-card a {
    color: var(--primary);
    text-decoration: underline;
}

.content-card a:hover {
    color: #a5b4fc;
}

.content-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-card th,
.content-card td {
    padding: 14px 18px;
    border: 1px solid var(--border-soft);
    font-size: 14px;
    text-align: left;
}

.content-card th {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-main);
    font-weight: 700;
}

.content-card td {
    color: var(--text-muted);
}

/* Error page (404) styles */
.error-container {
    text-align: center;
    padding: 80px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.error-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.error-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   UNIFIED RELATED GAMES & SOCIAL BUTTONS (PREMIUM RESPONSIVE RULES)
   ========================================================================== */

/* 1. Counter Reset for all Related Games List containers */
.app-list-yono-games,
.app-list_dont_copy_created_by_allappstore_com,
.app-list_dont_copy_created_by_yono-games,
.app-list_dont_copy_created_by_yono-games_com,
.app-list,
.related-grid {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px;
    counter-reset: app-counter;
}

/* 2. Uniform Card Structure matching main index list */
.app-item-yono-games,
.app-item_dont_copy_created_by_allappstore_com,
.app-item_dont_copy_created_by_yono-games,
.app-item_dont_copy_created_by_yono-games_com,
.app-item,
.related-card {
    display: flex !important;
    align-items: center !important;
    background-color: var(--bg-card) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 12px !important;
    padding: 12px 16px !important;
    counter-increment: app-counter;
    box-shadow: var(--shadow-soft) !important;
    border: 1px solid var(--border-soft) !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.app-item-yono-games:hover,
.app-item_dont_copy_created_by_allappstore_com:hover,
.app-item_dont_copy_created_by_yono-games:hover,
.app-item_dont_copy_created_by_yono-games_com:hover,
.app-item:hover,
.related-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(99, 102, 241, 0.35) !important;
    background-color: var(--bg-card-hover) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05) !important;
}

/* 3. Automatic Prepended Counters */
.app-item-yono-games::before,
.app-item_dont_copy_created_by_allappstore_com::before,
.app-item_dont_copy_created_by_yono-games::before,
.app-item_dont_copy_created_by_yono-games_com::before,
.app-item::before,
.related-card::before {
    content: counter(app-counter) !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #64748b !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1) !important;
}

/* Leaderboard rank colors for first 3 apps */
.app-list-yono-games li:nth-child(1) .app-item-yono-games::before,
.app-list-yono-games li:nth-child(1)::before {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%) !important;
    /* Gold */
}

.app-list-yono-games li:nth-child(2) .app-item-yono-games::before,
.app-list-yono-games li:nth-child(2)::before {
    background: linear-gradient(135deg, #cbd5e1 0%, #64748b 100%) !important;
    /* Silver */
}

.app-list-yono-games li:nth-child(3) .app-item-yono-games::before,
.app-list-yono-games li:nth-child(3)::before {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%) !important;
    /* Bronze */
}

/* 4. Uniform App Logos */
.app-icon_dont_copy_created_by_yono-games,
.app-icon_dont_copy_created_by_allappstore_com,
.app-icon_dont_copy_created_by_yono-games_com,
.app-item img,
.related-card img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease !important;
    object-fit: cover !important;
    margin-right: 14px !important;
    flex-shrink: 0 !important;
}

/* Scale effect on hover */
.app-item-yono-games:hover img,
.app-item_dont_copy_created_by_allappstore_com:hover img,
.app-item_dont_copy_created_by_yono-games:hover img,
.app-item_dont_copy_created_by_yono-games_com:hover img,
.app-item:hover img,
.related-card:hover img {
    transform: scale(1.05) !important;
}

/* 5. Details Section Styling */
.app-details_dont_copy_created_by_yono-games,
.app-details_dont_copy_created_by_allappstore_com,
.app-details_dont_copy_created_by_yono-games_com,
.app-details,
.related-info {
    flex-grow: 1 !important;
    margin-right: 12px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Title Font Standardisation */
.app-title_dont_copy_created_by_yono-games,
.app-title_dont_copy_created_by_allappstore_com,
.app-title_dont_copy_created_by_yono-games_com,
.app-title,
.related-info h6 {
    font-size: 16px !important;
    margin: 0 0 6px !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    line-height: 1.2 !important;
}

/* Metadata Colors (Bonus & Withdrawal info) */
.bonus-amount_dont_copy_created_by_yono-games,
.bonus-amount_dont_copy_created_by_allappstore_com,
.bonus-amount_dont_copy_created_by_yono-games_com,
.related-info p {
    color: #f472b6 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    column-gap: 5px !important;
    margin-bottom: 4px !important;
    margin-top: 0 !important;
}

.withdrawal-amount_dont_copy_created_by_yono-games,
.withdrawal-amount_dont_copy_created_by_allappstore_com,
.withdrawal-amount_dont_copy_created_by_yono-games_com,
.related-info .tag-line,
.app-meta {
    color: var(--accent) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    column-gap: 5px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Fix generic styles in other game structures */
.related-info p i,
.related-info .tag-line i,
.app-meta i {
    color: inherit !important;
}

/* 6. Download Button Styling */
.download-button_dont_copy_created_by_yono-games,
.download-button_dont_copy_created_by_allappstore_com,
.download-button_dont_copy_created_by_yono-games_com,
.btn-mini-download,
.btn-related {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 22px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    color: #fff !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    cursor: pointer !important;
    min-width: 110px !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.download-button_dont_copy_created_by_yono-games:hover,
.download-button_dont_copy_created_by_allappstore_com:hover,
.download-button_dont_copy_created_by_yono-games_com:hover,
.btn-mini-download:hover,
.btn-related:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45), 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
    background: linear-gradient(135deg, #34d399 0%, #059669 100%) !important;
}

/* 7. WhatsApp & Telegram Custom Branding Gradients */
.custom-button,
.custom-buttonW {
    width: 100% !important;
    max-width: 320px !important;
    padding: 12px 20px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border-radius: 99px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 8px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

.custom-button {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.25) !important;
    border: 1px solid rgba(0, 136, 204, 0.35) !important;
}

.custom-buttonW {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25) !important;
    border: 1px solid rgba(37, 211, 102, 0.35) !important;
}

.custom-button:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: linear-gradient(135deg, #0099e6 0%, #006699 100%) !important;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.45), 0 0 0 2px rgba(0, 136, 204, 0.2) !important;
}

.custom-buttonW:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background: linear-gradient(135deg, #34e073 0%, #128c7e 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(37, 211, 102, 0.2) !important;
}

.custom-button:active,
.custom-buttonW:active {
    transform: translateY(0) scale(0.98) !important;
}

.custom-button i,
.custom-buttonW i {
    color: #ffffff !important;
    font-size: 16px !important;
}

/* 8. Mobile Optimization Rules */
@media (max-width: 768px) {

    .group-card,
    .group-card1 {
        flex-direction: column !important;
        row-gap: 12px !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .group-card span,
    .group-card1 span {
        flex-wrap: wrap !important;
        justify-content: center !important;
        column-gap: 8px !important;
    }
}

@media (max-width: 640px) {

    /* Scale down related list padding and counters */
    .app-item-yono-games,
    .app-item_dont_copy_created_by_allappstore_com,
    .app-item_dont_copy_created_by_yono-games,
    .app-item_dont_copy_created_by_yono-games_com,
    .app-item,
    .related-card {
        padding: 10px 8px !important;
    }

    .app-item-yono-games::before,
    .app-item_dont_copy_created_by_allappstore_com::before,
    .app-item_dont_copy_created_by_yono-games::before,
    .app-item_dont_copy_created_by_yono-games_com::before,
    .app-item::before,
    .related-card::before {
        font-size: 12px !important;
        margin-right: 6px !important;
        min-width: 16px !important;
    }

    /* Scale down images */
    .app-icon_dont_copy_created_by_yono-games,
    .app-icon_dont_copy_created_by_allappstore_com,
    .app-icon_dont_copy_created_by_yono-games_com,
    .app-item img,
    .related-card img {
        width: 48px !important;
        height: 48px !important;
        margin-right: 10px !important;
        border-radius: 10px !important;
    }

    /* Scale down titles and text */
    .app-title_dont_copy_created_by_yono-games,
    .app-title_dont_copy_created_by_allappstore_com,
    .app-title_dont_copy_created_by_yono-games_com,
    .app-title,
    .related-info h6 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .bonus-amount_dont_copy_created_by_yono-games,
    .bonus-amount_dont_copy_created_by_allappstore_com,
    .bonus-amount_dont_copy_created_by_yono-games_com,
    .related-info p,
    .withdrawal-amount_dont_copy_created_by_yono-games,
    .withdrawal-amount_dont_copy_created_by_allappstore_com,
    .withdrawal-amount_dont_copy_created_by_yono-games_com,
    .related-info .tag-line,
    .app-meta {
        font-size: 11px !important;
    }

    /* Scale down buttons */
    .download-button_dont_copy_created_by_yono-games,
    .download-button_dont_copy_created_by_allappstore_com,
    .download-button_dont_copy_created_by_yono-games_com,
    .btn-mini-download,
    .btn-related {
        padding: 8px 16px !important;
        min-width: 90px !important;
        font-size: 12px !important;
    }

    /* Floating sticky side buttons adjustment on mobile */
    .side-buttons-container {
        bottom: 15px !important;
        right: 15px !important;
        row-gap: 10px !important;
    }

    .side-floating-btn {
        width: 44px !important;
        height: 44px !important;
    }
}

/* ==========================================================================
   PREMIUM GAMING & GAMBLING DESIGN SYSTEM (HEADER, FOOTER & MOBILE FIXES)
   ========================================================================== */

/* Neon Color Tokens & Glows */
:root {
    --neon-pink: #ec4899;
    --neon-pink-glow: rgba(236, 72, 153, 0.4);
    --gold: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.35);
}

/* Premium Header Theme */
.header {
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 2px solid transparent !important;
    border-image: linear-gradient(to right, var(--primary), var(--neon-pink), var(--accent)) 1 !important;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.04), 0 0 10px rgba(99, 102, 241, 0.04) !important;
}

.logo-top {
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15) !important;
}

.header-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.05) !important;
}

/* Sleek Menu Toggle Button */
.icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(99, 102, 241, 0.06) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.05) !important;
    color: var(--text-main) !important;
    display: none;
    transition: all 0.3s ease !important;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    padding: 0 !important;
}

.icon i {
    color: inherit !important;
    font-size: 16px !important;
}

.icon:hover {
    background: rgba(99, 102, 241, 0.12) !important;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.25) !important;
    transform: scale(1.05) !important;
}

/* Premium Mobile Menu List View with smooth transitions */
.menu-container {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 2px solid var(--neon-pink) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(15, 23, 42, 0.02) !important;
    padding: 0 15px !important;
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.35s ease !important;
}

.menu-container.open {
    max-height: 400px !important;
    opacity: 1 !important;
    padding: 20px 15px !important;
}

.menu-row {
    display: flex !important;
    flex-direction: column !important;
    row-gap: 8px !important;
    align-items: stretch !important;
}

.menu-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    display: flex !important;
    align-items: center !important;
    column-gap: 12px !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
}

.menu-item i {
    font-size: 16px !important;
    color: var(--primary) !important;
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4) !important;
}

.menu-item:hover {
    border-color: var(--primary) !important;
    background: #f1f5f9 !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.05) !important;
    transform: translateX(4px) !important;
}

/* Premium Badges & Readability Overrides */
.footer-badges-section {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-lg) !important;
    padding: 24px 15px !important;
}

.footer-badge-item {
    transition: transform 0.3s ease !important;
}

.footer-badge-item:hover {
    transform: translateY(-3px) !important;
}

.badge-icon-18 {
    border-color: var(--danger) !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4) !important;
    animation: badgePulse 2s infinite alternate;
}

.secure-glow {
    color: #06b6d4 !important;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.5) !important;
}

.dice-glow {
    color: #fbbf24 !important;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5) !important;
}

.check-glow {
    color: #10b981 !important;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5) !important;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
    }
}

/* Legibility overrides for subgame headers with hardcoded inline colors */
.header-content12 p {
    color: var(--text-muted) !important;
}

.header-content12 a p,
.header-content12 a p span {
    color: var(--accent) !important;
    text-decoration: underline !important;
    text-shadow: 0 0 8px var(--accent-glow) !important;
}

/* Premium Site Footer */
.site-footer {
    margin-top: 50px !important;
    background: #ffffff !important;
    border-top: 2px solid transparent !important;
    border-image: linear-gradient(to right, var(--neon-pink), var(--primary), var(--accent)) 1 !important;
    padding: 40px 0 20px !important;
    position: relative !important;
    box-shadow: 0 -4px 30px rgba(15, 23, 42, 0.03) !important;
}

.footer-cta-card {
    margin-bottom: 16px !important;
    padding: 20px 24px !important;
    border-radius: var(--radius-lg) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.telegram-card-premium {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.02) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
    border-color: rgba(0, 136, 204, 0.12) !important;
}

.share-card-premium {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
    border-color: rgba(236, 72, 153, 0.12) !important;
}

.footer-cta-content {
    display: flex !important;
    align-items: center !important;
    column-gap: 16px !important;
}

.icon-telegram-pulse {
    font-size: 32px !important;
    color: #0284c7 !important;
    text-shadow: 0 0 15px rgba(2, 132, 199, 0.2) !important;
    animation: pulseGlow 2.5s infinite alternate;
}

.icon-share-pulse {
    font-size: 28px !important;
    color: var(--neon-pink) !important;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.2) !important;
    animation: pulseGlow 2.5s infinite alternate;
}

.footer-cta-text h4 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    margin: 0 0 4px !important;
}

.footer-cta-text p {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.footer-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    padding: 10px 22px !important;
    border-radius: 99px !important;
    color: #ffffff !important;
    border: none !important;
    column-gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.telegram-card-premium .footer-cta-btn {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4) !important;
}

.share-card-premium .footer-cta-btn {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%) !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3) !important;
}

.footer-cta-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
}

.telegram-card-premium .footer-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.6) !important;
}

.share-card-premium .footer-cta-btn:hover {
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5) !important;
}

/* Trust & Age Rating Badges */
.footer-badges-section {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin: 25px 0 !important;
    padding: 20px 10px !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.footer-badge-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    row-gap: 8px !important;
    text-align: center !important;
}

.badge-icon-18 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--danger);
    color: var(--danger);
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.footer-badge-item i {
    font-size: 24px !important;
}

.secure-glow {
    color: var(--accent) !important;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.4) !important;
}

.dice-glow {
    color: var(--primary) !important;
    text-shadow: 0 0 12px rgba(99, 102, 241, 0.4) !important;
}

.check-glow {
    color: var(--accent) !important;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.4) !important;
}

.badge-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

/* Footer Bottom Section Styling */
.footer-bottom-area {
    margin-top: 30px !important;
    text-align: center !important;
}

.footer-nav-links {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px 24px !important;
    margin-bottom: 24px !important;
}

.footer-nav-links a {
    color: var(--text-muted) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
}

.footer-nav-links a:hover {
    color: var(--primary) !important;
}

.footer-info-text {
    border-top: 1px solid #e2e8f0 !important;
    padding-top: 20px !important;
}

.footer-disclaimer-short {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    opacity: 0.8 !important;
    max-width: 600px !important;
    margin: 0 auto 12px !important;
    line-height: 1.6 !important;
}

.footer-copyright {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.brand-glow {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* Dynamic Grid Footer layout classes */
.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col p {
    font-size: 13.5px !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
    margin-top: 10px;
}

.footer-cta-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Telegram / Share Premium cards custom colors and layout adjustments */
.telegram-card-premium,
.share-card-premium {
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.telegram-card-premium .footer-cta-btn,
.share-card-premium .footer-cta-btn {
    font-size: 13px !important;
    padding: 10px 22px !important;
    border-radius: 99px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    100% {
        transform: scale(1.04);
        opacity: 1;
    }
}

/* Responsive Table scroll fallback */
@media (max-width: 768px) {

    #iTable,
    #appDetailsTable,
    #iTable2,
    table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 15px 0 !important;
    }
}

/* Responsive Gaming Footer & Header adjustments */
@media (max-width: 768px) {
    .telegram-top {
        display: none !important;
    }

    .icon {
        display: inline-flex !important;
    }

    .footer-cta-card {
        flex-direction: column !important;
        align-items: stretch !important;
        row-gap: 15px !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .footer-cta-content {
        flex-direction: column !important;
        row-gap: 10px !important;
    }

    .footer-badges-section {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 10px !important;
    }

    .footer-nav-links {
        gap: 12px 16px !important;
    }
}

/* Mobile App list item layout wrapping & full-width CTA buttons (Triggered below 640px to prevent mobile squishing) */
@media (max-width: 640px) {

    .app-item-yono-games,
    .app-item_dont_copy_created_by_allappstore_com,
    .app-item_dont_copy_created_by_yono-games,
    .app-item_dont_copy_created_by_yono-games_com,
    .app-item,
    .related-card {
        flex-wrap: wrap !important;
        padding: 12px !important;
        align-items: center !important;
    }

    .app-icon-yg-container,
    .app-icon_dont_copy_created_by_yono-games-container,
    .app-icon_dont_copy_created_by_yono-games_com-container {
        margin-right: 10px !important;
    }

    .app-details_dont_copy_created_by_yono-games,
    .app-details_dont_copy_created_by_allappstore_com,
    .app-details_dont_copy_created_by_yono-games_com,
    .app-details,
    .related-info {
        width: calc(100% - 95px) !important;
        margin-right: 0 !important;
    }

    .download-button_dont_copy_created_by_yono-games,
    .download-button_dont_copy_created_by_allappstore_com,
    .download-button_dont_copy_created_by_yono-games_com,
    .btn-mini-download,
    .btn-related {
        width: 100% !important;
        min-width: 100% !important;
        margin-top: 12px !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   SUPERIOR PREMIUM WHITE THEME DESIGN UPGRADES & MICRO-ANIMATIONS
   ========================================================================== */

/* 1. Global Light Glassmorphic Desktop Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid var(--border-soft) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.navbar a {
    color: var(--text-muted) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar a:hover {
    color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.05) !important;
}

.navbar a.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary) !important;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.08), transparent) !important;
    text-shadow: none !important;
}

/* 2. Color adjustments for Game Detail elements in White Theme */
.header-content12 h1 {
    color: var(--text-main) !important;
}

.rating-block span,
.download-block span,
.reviews-block span {
    color: var(--text-main) !important;
}

.rating-info {
    border-color: var(--border-soft) !important;
}

.separator {
    color: var(--border-soft) !important;
}

/* Red Disclaimer Box Color Refinements */
.red-disclaimer-box {
    background-color: rgba(239, 68, 68, 0.03) !important;
    border: 1px solid rgba(239, 68, 68, 0.15) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.02) !important;
}

.centerio {
    color: #dc2626 !important; /* Darker red for text contrast */
}

.centerio1 {
    color: #dc2626 !important;
}

.red-disclaimer-box a {
    color: #b91c1c !important;
    text-decoration: underline !important;
}

/* FAQ light theme upgrades */
.container8262 {
    background: rgba(99, 102, 241, 0.02) !important;
    border: 1px solid var(--border-soft) !important;
    box-shadow: var(--shadow-soft) !important;
}

.answer8262 {
    background: #ffffff !important;
    border: 1px solid var(--border-soft) !important;
    color: var(--text-muted) !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.01) !important;
}

/* Table Light Mode Overrides */
.content-card table {
    background: #ffffff !important;
    border-color: var(--border-soft) !important;
    box-shadow: var(--shadow-soft) !important;
}

.content-card th {
    background: #f8fafc !important;
    color: var(--text-main) !important;
    border-color: var(--border-soft) !important;
}

.content-card td {
    color: var(--text-muted) !important;
    border-color: var(--border-soft) !important;
    background: #ffffff !important;
}

.content-card tr:nth-child(even) td {
    background: #f8fafc !important;
}

/* 3. High-End Micro-Animations */

/* Card lists fade-in load animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-item-yono-games {
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards !important;
}

/* Stagger list item animation delay */
.app-list-yono-games li:nth-child(1) .app-item-yono-games { animation-delay: 0.03s !important; }
.app-list-yono-games li:nth-child(2) .app-item-yono-games { animation-delay: 0.06s !important; }
.app-list-yono-games li:nth-child(3) .app-item-yono-games { animation-delay: 0.09s !important; }
.app-list-yono-games li:nth-child(4) .app-item-yono-games { animation-delay: 0.12s !important; }
.app-list-yono-games li:nth-child(5) .app-item-yono-games { animation-delay: 0.15s !important; }
.app-list-yono-games li:nth-child(6) .app-item-yono-games { animation-delay: 0.18s !important; }
.app-list-yono-games li:nth-child(7) .app-item-yono-games { animation-delay: 0.21s !important; }
.app-list-yono-games li:nth-child(8) .app-item-yono-games { animation-delay: 0.24s !important; }
.app-list-yono-games li:nth-child(9) .app-item-yono-games { animation-delay: 0.27s !important; }
.app-list-yono-games li:nth-child(10) .app-item-yono-games { animation-delay: 0.3s !important; }

/* Interactive Hover Glow animation on game cards */
.app-item-yono-games {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.app-item-yono-games:hover {
    transform: translateY(-4px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.05) !important;
}

/* App container zoom glow hover */
.app-container2 {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.app-container2:hover {
    transform: translateY(-4px) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.06) !important;
}

/* Download button pulse animation */
@keyframes downloadPulse {
    0% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.45);
    }
    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
}

.download-button_dont_copy_created_by_yono-games,
.download-button_dont_copy_created_by_allappstore_com,
.download-button_dont_copy_created_by_yono-games_com,
.install-button {
    animation: downloadPulse 3s infinite ease-in-out !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.download-button_dont_copy_created_by_yono-games:hover,
.download-button_dont_copy_created_by_allappstore_com:hover,
.download-button_dont_copy_created_by_yono-games_com:hover,
.install-button:hover {
    transform: translateY(-2px) scale(1.03) !important;
    filter: brightness(1.05) !important;
}

/* Floating SVG buttons ripple scale */
.side-floating-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* ==========================================================================
   GAME SCREENSHOTS SECTION & MOBILE CAROUSEL
   ========================================================================== */

.game-screenshots-section {
    margin: 35px auto;
    padding: 0 5px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.screenshot-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    padding: 16px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}
.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.screenshot-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 16:9 vertical format */
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 14px;
    border: 1px solid #f1f5f9;
}
.screenshot-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.screenshot-card:hover .screenshot-img-wrapper img {
    transform: scale(1.05);
}
.screenshot-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.screenshot-placeholder i {
    font-size: 38px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.screenshot-card:hover .screenshot-placeholder i {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.85;
}
.screenshot-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

@media (max-width: 992px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 576px) {
    .screenshots-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 5px 5px 15px 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for clean app store look */
    }
    .screenshots-grid::-webkit-scrollbar {
        display: none;
    }
    .screenshot-card {
        flex: 0 0 175px;
        scroll-snap-align: start;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    }
}

/* ==========================================================================
   404 ERROR PAGE CUSTOM STYLES (PREMIUM & DESI GRAPHICS)
   ========================================================================== */
.error-container {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.error-code {
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(99, 102, 241, 0.2));
    animation: errorPulse 2s infinite alternate;
}
.error-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}
.error-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.error-popular-section {
    margin-top: 40px;
    border-top: 1px solid var(--border-soft);
    padding-top: 40px;
    text-align: left;
}
.error-popular-section h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}
.error-popular-section p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.error-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}
.error-game-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.error-game-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}
.error-game-card img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.error-game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.error-game-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}
.error-game-info span {
    font-size: 11.5px;
    color: var(--accent);
    font-weight: 600;
}
.error-game-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.error-game-btn:hover {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--primary) 100%);
    color: #fff;
}
@keyframes errorPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ==========================================================================
   BILINGUAL & DOWNLOAD COMPONENT STYLES
   ========================================================================== */

/* Language Selector Pills */
.lang-selector {
    display: inline-flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 99px;
    margin-bottom: 25px;
    border: 1px solid var(--border-soft);
    gap: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.lang-tab {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 99px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.lang-tab i {
    font-size: 14px;
}

.lang-tab:hover {
    color: var(--text-main);
}

.lang-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-pink) 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

/* Language Content Transition */
.lang-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.lang-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Download Page Premium UI */
.download-page-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-glow);
    margin: 20px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.download-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--neon-pink));
}

.download-spinner-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.download-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-glow);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.download-spinner-inner {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glow), rgba(236, 72, 153, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-spinner-inner i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 1.5s ease-in-out infinite alternate;
}

.download-countdown-text {
    font-size: 15px;
    color: var(--text-muted);
    margin: 15px 0 25px;
}

.download-countdown-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--neon-pink);
    display: inline-block;
    padding: 0 5px;
}

.manual-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-pink) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 25px;
}

.manual-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.35);
    color: #fff;
}

.download-warning-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.15);
    text-align: left;
}

.download-warning-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-warning-text {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}