/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    -webkit-text-size-adjust: 100%;
}

.ast-container, .ast-container-fluid {
	padding: 0px;
}

@media (min-width: 922px) {
    .site-content .ast-container {
        display: block;
    }
}

.ast-plain-container, .ast-page-builder-template {
    background-color: var(--dark);
}
:root {
    --brand:       #FF6B00;
    --brand2:      #FFB300;
    --brand-glow:  #FF6B0040;
    --dark:        #09090F;
    --dark2:       #0F0F18;
    --card:        #13131E;
    --card2:       #1A1A28;
    --border:      #FFFFFF0F;
    --border2:     #FFFFFF1A;
    --text:        #F0EEE8;
    --muted:       #7A7A90;
    --muted2:      #5A5A72;
    --green:       #22C55E;
    --teal:        #06B6D4;
    --rad:         14px;
    --rad-sm:      8px;
    --rad-pill:    100px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.ygm-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border2);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ygm-header-left a {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.ygm-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    overflow: hidden;
    border: 1.5px solid var(--brand);
    flex-shrink: 0;
    background: var(--card2);
    box-shadow: 0 0 14px var(--brand-glow);
}

.ygm-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygm-site-title {
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.ygm-site-sub {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .6px;
    text-transform: uppercase;
}

.ygm-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
}

.ygm-hamburger span {
    display: block;
    border-radius: 3px;
    background: var(--brand);
    transition: all 0.25s ease;
}

.ygm-hamburger span:nth-child(1) { width: 22px; height: 2.5px; }
.ygm-hamburger span:nth-child(2) { width: 16px; height: 2.5px; }
.ygm-hamburger span:nth-child(3) { width: 22px; height: 2.5px; }

/* ===== MOBILE MENU ===== */
.ygm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.ygm-overlay.open { opacity: 1; pointer-events: all; }

.ygm-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: var(--dark2);
    border-left: 1px solid var(--border2);
    z-index: 400;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ygm-menu-panel.open { right: 0; }

.ygm-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.ygm-menu-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ygm-close-btn {
    width: 32px;
    height: 32px;
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 16px;
    transition: all 0.2s;
}

.ygm-close-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.ygm-menu-panel ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.ygm-menu-panel ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--rad-sm);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
    border: 1px solid transparent;
}

.ygm-menu-panel ul li a:hover {
    background: var(--card2);
    border-color: var(--border2);
    color: var(--brand);
}

.ygm-menu-panel ul li a i { font-size: 16px; color: var(--brand); }

.ygm-menu-panel ul li.tg-item a {
    background: #0088cc15;
    border-color: #0088cc30;
    color: #29b6f6;
}

.ygm-menu-panel ul li.tg-item a i { color: #29b6f6; }

/* ===== DESKTOP NAV ===== */
.ygm-desktop-nav {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 2px;
}

.ygm-desktop-nav::-webkit-scrollbar { display: none; }

.ygm-desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-shrink: 0;
}

.ygm-desktop-nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--muted);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    white-space: nowrap;
}

.ygm-desktop-nav ul li a:hover,
.ygm-desktop-nav ul li a.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.ygm-desktop-nav ul li a i { font-size: 14px; }

.ygm-desktop-nav ul li.tg-join a {
    color: #29b6f6;
    border-bottom-color: transparent;
}

/* ===== HERO / DESCRIPTION STRIP ===== */
.ygm-hero-strip {
    margin: 12px 14px;
    background: linear-gradient(135deg, #1A1228 0%, #0E1A2E 100%);
    border: 1px solid #FF6B0030;
    border-radius: var(--rad);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.ygm-hero-strip::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #FF6B0018, transparent 70%);
    pointer-events: none;
}

.ygm-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FF6B0018;
    border: 1px solid #FF6B0045;
    color: var(--brand);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--rad-pill);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.ygm-live-dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
}

.ygm-hero-desc {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.65;
}

.ygm-hero-stats {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

nav.ygm-desktop-nav ol , nav.ygm-desktop-nav ul {
	margin: 0 !important;
} 



/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --brand:       #FF6B00;
    --brand2:      #FFB300;
    --brand-glow:  #FF6B0040;
    --dark:        #09090F;
    --dark2:       #0F0F18;
    --card:        #13131E;
    --card2:       #1A1A28;
    --border:      #FFFFFF0F;
    --border2:     #FFFFFF1A;
    --text:        #F0EEE8;
    --muted:       #7A7A90;
    --muted2:      #5A5A72;
    --green:       #22C55E;
    --teal:        #06B6D4;
    --rad:         14px;
    --rad-sm:      8px;
    --rad-pill:    100px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.ygm-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border2);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ygm-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.ygm-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    overflow: hidden;
    border: 1.5px solid var(--brand);
    flex-shrink: 0;
    background: var(--card2);
    box-shadow: 0 0 14px var(--brand-glow);
}

.ygm-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygm-site-title {
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.ygm-site-sub {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .6px;
    text-transform: uppercase;
}

.ygm-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
}

.ygm-hamburger span {
    display: block;
    border-radius: 3px;
    background: var(--brand);
    transition: all 0.25s ease;
}

.ygm-hamburger span:nth-child(1) { width: 22px; height: 2.5px; }
.ygm-hamburger span:nth-child(2) { width: 16px; height: 2.5px; }
.ygm-hamburger span:nth-child(3) { width: 22px; height: 2.5px; }

/* ===== MOBILE MENU ===== */
.ygm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.ygm-overlay.open { opacity: 1; pointer-events: all; }

.ygm-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: var(--dark2);
    border-left: 1px solid var(--border2);
    z-index: 400;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ygm-menu-panel.open { right: 0; }

.ygm-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.ygm-menu-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ygm-close-btn {
    width: 32px;
    height: 32px;
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 16px;
    transition: all 0.2s;
}

.ygm-close-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.ygm-menu-panel ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.ygm-menu-panel ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--rad-sm);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
    border: 1px solid transparent;
}

.ygm-menu-panel ul li a:hover {
    background: var(--card2);
    border-color: var(--border2);
    color: var(--brand);
}

.ygm-menu-panel ul li a i { font-size: 16px; color: var(--brand); }

.ygm-menu-panel ul li.tg-item a {
    background: #0088cc15;
    border-color: #0088cc30;
    color: #29b6f6;
}

.ygm-menu-panel ul li.tg-item a i { color: #29b6f6; }

/* ===== DESKTOP NAV ===== */
.ygm-desktop-nav {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 2px;
}

.ygm-desktop-nav::-webkit-scrollbar { display: none; }

.ygm-desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-shrink: 0;
}

.ygm-desktop-nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--muted);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    white-space: nowrap;
}

.ygm-desktop-nav ul li a:hover,
.ygm-desktop-nav ul li a.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.ygm-desktop-nav ul li a i { font-size: 14px; }
.ygm-desktop-nav ul li.tg-join a { color: #29b6f6; }

/* ===== PAGE TITLE BAR ===== */
.ygm-title-bar {
    background: var(--card);
    border-bottom: 1px solid var(--border2);
    padding: 10px 16px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.5;
}

/* ===== PAGE CONTENT ===== */
.ygm-page-content {
    padding: 14px 14px 40px;
}

/* ===== APP INFO CARD ===== */
.ygm-app-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    animation: fadeUp 0.35s ease 0.03s both;
}

/* Top glow accent line */
.ygm-app-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand2), var(--brand));
}

/* ===== APP TOP ROW ===== */
.ygm-app-top-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 16px 14px;
}

.ygm-app-logo-box {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 22px;
    overflow: hidden;
    border: 1.5px solid var(--border2);
    background: var(--card2);
    box-shadow: 0 4px 20px var(--brand-glow);
}

.ygm-app-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygm-logo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    background: var(--card2);
}

.ygm-app-title-col {
    flex: 1;
    padding-top: 10px;
    min-width: 0;
}

.ygm-app-title-col h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.ygm-apk-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    background: #06B6D415;
    border: 1px solid #06B6D430;
    padding: 3px 10px;
    border-radius: var(--rad-pill);
    transition: background 0.15s;
}

.ygm-apk-link:hover { background: #06B6D425; }
.ygm-apk-link i { font-size: 12px; }

/* ===== STATS ROW ===== */
.ygm-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ygm-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 11px 4px;
    gap: 4px;
    border-right: 1px solid var(--border);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
}

.ygm-stat-item:last-child { border-right: none; }

.ygm-stat-item i {
    font-size: 17px;
    color: var(--brand);
}

.ygm-stat-item:nth-child(1) i { color: #FFD700; }
.ygm-stat-item:nth-child(2) i { color: var(--teal); }
.ygm-stat-item:nth-child(3) i { color: var(--green); }
.ygm-stat-item:nth-child(4) i { color: var(--brand); }

/* ===== ACTION BUTTONS ===== */
.ygm-app-actions {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ygm-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #FF6B00, #FF9500);
    color: #fff !important;
    text-decoration: none !important;
    padding: 13px 20px;
    border-radius: var(--rad-pill);
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--brand-glow);
    transition: transform 0.15s, box-shadow 0.15s;
}

.ygm-btn-download:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px var(--brand-glow);
}

.ygm-btn-download i { font-size: 20px; }

.ygm-btn-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #0088cc18;
    color: #29b6f6 !important;
    text-decoration: none !important;
    padding: 11px 20px;
    border-radius: var(--rad-pill);
    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid #0088cc40;
    transition: background 0.15s;
}

.ygm-btn-telegram:hover { background: #0088cc28; }
.ygm-btn-telegram i { font-size: 18px; }

/* ===== BLOG / DESCRIPTION CARD ===== */
.ygm-blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 18px 16px;
    margin-bottom: 14px;
}

.ygm-blog-card-title {
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.ygm-blog-card-title i { color: var(--brand); font-size: 16px; }

.ygm-blog-body {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
}

.ygm-blog-body p { margin-bottom: 11px; color: var(--muted); }
.ygm-blog-body p:last-child { margin-bottom: 0; }

.ygm-blog-body h2,
.ygm-blog-body h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 16px 0 7px;
    line-height: 1.3;
}

.ygm-blog-body h3 { font-size: 15px; }

.ygm-blog-body ul,
.ygm-blog-body ol {
    padding-left: 18px;
    margin-bottom: 12px;
    color: var(--muted);
}

.ygm-blog-body li { margin-bottom: 5px; }

.ygm-blog-body a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px dashed var(--brand-glow);
}

.ygm-blog-body strong { color: var(--text); font-weight: 600; }

.ygm-blog-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    margin-bottom: 14px;
}

.ygm-blog-body th,
.ygm-blog-body td {
    border: 1px solid var(--border2);
    padding: 8px 10px;
    text-align: left;
}

.ygm-blog-body th {
    background: var(--card2);
    color: var(--text);
    font-weight: 600;
}

/* ===== RELATED APPS SECTION ===== */
.ygm-related-section { margin-bottom: 14px; }

.ygm-related-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding: 0 2px;
}

.ygm-related-title i { color: var(--brand); font-size: 16px; }

.ygm-related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== RELATED CARD ===== */
.ygm-related-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 12px 12px 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
    animation: fadeUp 0.35s ease both;
}

.ygm-related-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3.5px;
    background: linear-gradient(180deg, var(--brand), var(--brand2));
    border-radius: 3px 0 0 3px;
}

.ygm-related-card:active { transform: scale(0.985); }

/* stagger animation */
.ygm-related-list .ygm-related-card:nth-child(1)  { animation-delay: 0.05s; }
.ygm-related-list .ygm-related-card:nth-child(2)  { animation-delay: 0.10s; }
.ygm-related-list .ygm-related-card:nth-child(3)  { animation-delay: 0.15s; }
.ygm-related-list .ygm-related-card:nth-child(4)  { animation-delay: 0.20s; }
.ygm-related-list .ygm-related-card:nth-child(5)  { animation-delay: 0.25s; }
.ygm-related-list .ygm-related-card:nth-child(6)  { animation-delay: 0.30s; }
.ygm-related-list .ygm-related-card:nth-child(7)  { animation-delay: 0.35s; }
.ygm-related-list .ygm-related-card:nth-child(8)  { animation-delay: 0.40s; }
.ygm-related-list .ygm-related-card:nth-child(9)  { animation-delay: 0.45s; }
.ygm-related-list .ygm-related-card:nth-child(10) { animation-delay: 0.50s; }

.ygm-related-num {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--brand);
    background: #FF6B0015;
    border: 1px solid #FF6B0030;
    border-radius: 6px;
    padding: 1px 6px;
    line-height: 1.5;
}

.ygm-related-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 13px;
    overflow: hidden;
    border: 1px solid var(--border2);
    background: var(--card2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.ygm-related-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygm-related-logo .logo-ph {
    font-size: 24px;
}

.ygm-related-info {
    flex: 1;
    min-width: 0;
}

.ygm-related-name {
    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ygm-related-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 0;
}

.ygm-related-chip.bonus  { color: #4ade80; }
.ygm-related-chip.bonus i { color: var(--green); }
.ygm-related-chip.withdraw { color: #22d3ee; }
.ygm-related-chip.withdraw i { color: var(--teal); }
.ygm-related-chip i { font-size: 12px; }

.ygm-related-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #FF6B00, #FF9500);
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 10px;
    border-radius: 11px;
    gap: 3px;
    min-width: 58px;
    box-shadow: 0 3px 10px var(--brand-glow);
    transition: transform 0.15s;
}

.ygm-related-btn:active { transform: scale(0.92); }
.ygm-related-btn i { font-size: 19px; }
.ygm-related-btn span { font-size: 9.5px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }

/* ===== ARTICLE / FOOTER CONTENT CARD ===== */
.ygm-article-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 18px 16px;
    margin-bottom: 14px;
}

.ygm-article-body {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
}

.ygm-article-body p { margin-bottom: 11px; color: var(--muted); }
.ygm-article-body p:last-child { margin-bottom: 0; }

.ygm-article-body h2,
.ygm-article-body h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 16px 0 7px;
    line-height: 1.3;
}

.ygm-article-body h3 { font-size: 15px; }

.ygm-article-body ul,
.ygm-article-body ol {
    padding-left: 18px;
    margin-bottom: 12px;
    color: var(--muted);
}

.ygm-article-body li { margin-bottom: 5px; }

.ygm-article-body a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px dashed var(--brand-glow);
}

.ygm-article-body strong { color: var(--text); font-weight: 600; }

.ygm-article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    margin-bottom: 14px;
}

.ygm-article-body th,
.ygm-article-body td {
    border: 1px solid var(--border2);
    padding: 8px 10px;
    text-align: left;
}

.ygm-article-body th {
    background: var(--card2);
    color: var(--text);
    font-weight: 600;
}

/* ===== NOTICE BOX ===== */
.ygm-notice {
    margin-top: 4px;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #1C1810, #131310);
    border: 1px solid #FFB30040;
    border-radius: var(--rad);
    padding: 16px;
}

.ygm-notice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo 2', cursive;
    font-size: 14.5px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.ygm-notice-title i { font-size: 17px; }

.ygm-notice-body {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.75;
}

.ygm-notice-body p { margin-bottom: 10px; }
.ygm-notice-body p:last-child { margin-bottom: 0; }

.ygm-notice-body a {
    color: var(--brand);
    text-decoration: underline;
    font-weight: 600;
}

.ygm-notice-body strong { color: var(--text); font-weight: 600; }

/* ===== FOOTER ===== */
.ygm-footer {
    margin-top: 20px;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 20px 16px 32px;
    text-align: center;
}

.ygm-footer-brand {
    font-family: 'Baloo 2', cursive;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.ygm-footer-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 10px;
}

.ygm-footer-inner a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.ygm-footer-inner a:hover { color: var(--brand); }

.ygm-footer-copy { font-size: 11.5px; color: var(--muted2); }

/* ===== TELEGRAM FLOAT ===== */
.ygm-tg-float {
    position: fixed;
    bottom: 22px;
    right: 16px;
    z-index: 150;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0088cc, #00aaee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px #0088cc60;
    text-decoration: none;
    transition: transform 0.2s;
}

.ygm-tg-float:active { transform: scale(0.9); }
.ygm-tg-float i { font-size: 24px; color: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ygm-stat {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--rad-sm);
    padding: 8px 6px;
    text-align: center;
}

.ygm-stat-num {
    font-family: 'Baloo 2', cursive;
    font-size: 17px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.1;
}

.ygm-stat-lbl {
    font-size: 9.5px;
    color: var(--muted);
    margin-top: 2px;
}

/* ===== TAB SWITCHER ===== */
.ygm-tabs {
    display: flex;
    margin: 0 14px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
}

.ygm-tab-btn {
    flex: 1;
    text-align: center;
    padding: 9px 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    font-family: 'Noto Sans', sans-serif;
}

.ygm-tab-btn.active {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 10px var(--brand-glow);
}

/* ===== SECTION LABEL ===== */
.ygm-sec-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    margin-bottom: 10px;
}

.ygm-sec-label-title {
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ygm-sec-label-count {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: var(--rad-pill);
    margin-left: 4px;
}

/* ===== TAB PANELS ===== */
.ygm-tab-panel { display: none; }
.ygm-tab-panel.active { display: block; }

/* ===== APPS LIST ===== */
.ygm-apps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 14px;
}

/* ===== APP CARD ===== */
.ygm-app-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    display: flex;
    align-items: center;
    padding: 13px 12px 13px 14px;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
}

.ygm-app-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.5px;
    background: linear-gradient(180deg, var(--brand), var(--brand2));
    border-radius: 3px 0 0 3px;
}

.ygm-app-card:active { transform: scale(0.985); }

.ygm-app-card:hover {
    border-color: var(--border2);
}

/* Rank badge */
.ygm-rank {
    position: absolute;
    top: 9px;
    left: 12px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--brand);
    background: #FF6B0015;
    border: 1px solid #FF6B0030;
    border-radius: 6px;
    padding: 1px 6px;
    line-height: 1.5;
    z-index: 1;
}

/* Hot / New badge */
.ygm-hot-badge {
    position: absolute;
    top: 9px;
    right: 10px;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: var(--rad-pill);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--brand), var(--brand2));
    color: #fff;
}

.ygm-hot-badge.new-badge {
    background: linear-gradient(90deg, #06B6D4, #22C55E);
}

/* App logo */
.ygm-app-logo {
    width: 58px;
    height: 58px;
    border-radius: 13px;
    overflow: hidden;
    background: var(--card2);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
}

.ygm-app-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygm-logo-placeholder {
    font-size: 26px;
    line-height: 1;
}

/* App info */
.ygm-app-info { flex: 1; min-width: 0; }

.ygm-app-name {
    font-family: 'Baloo 2', cursive;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ygm-app-chips {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ygm-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 0;
    color: var(--muted);
}

.ygm-chip i { font-size: 12px; }

.ygm-chip.bonus { color: #4ade80; }
.ygm-chip.bonus i { color: #22C55E; }

.ygm-chip.withdraw { color: #22d3ee; }
.ygm-chip.withdraw i { color: #06B6D4; }

/* Download Button */
.ygm-dl-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #FF6B00, #FF9500);
    color: #fff;
    text-decoration: none;
    border-radius: 11px;
    padding: 9px 11px;
    gap: 3px;
    flex-shrink: 0;
    box-shadow: 0 3px 12px var(--brand-glow);
    transition: transform 0.15s, box-shadow 0.15s;
    min-width: 60px;
}

.ygm-dl-btn:active { transform: scale(0.94); box-shadow: none; }

.ygm-dl-btn i { font-size: 20px; }

.ygm-dl-btn span {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

/* ===== HOMEPAGE ARTICLE ===== */
.ygm-article {
    margin: 18px 14px 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rad);
    padding: 18px 16px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
}

.ygm-article h1,
.ygm-article h2,
.ygm-article h3 {
    font-family: 'Baloo 2', cursive;
    color: var(--text);
    margin: 14px 0 6px;
    line-height: 1.3;
}

.ygm-article h1 { font-size: 18px; }
.ygm-article h2 { font-size: 16px; }
.ygm-article h3 { font-size: 14.5px; }

.ygm-article p { margin-bottom: 10px; }

.ygm-article a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px dashed var(--brand-glow);
}

.ygm-article strong { color: var(--text); font-weight: 600; }

/* ===== NOTICE BOX ===== */
.ygm-notice {
    margin: 14px 14px 0;
    background: linear-gradient(135deg, #1C1810, #131310);
    border: 1px solid #FFB30040;
    border-radius: var(--rad);
    padding: 16px;
}

.ygm-notice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo 2', cursive;
    font-size: 14.5px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.ygm-notice-title i { font-size: 17px; }

.ygm-notice-body {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.ygm-footer {
    margin-top: 20px;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 20px 16px 32px;
    text-align: center;
}

.ygm-footer-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
}

.ygm-footer-inner a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.ygm-footer-inner a:hover { color: var(--brand); }

.ygm-footer-copy {
    font-size: 11.5px;
    color: var(--muted2);
}

.ygm-footer-brand {
    font-family: 'Baloo 2', cursive;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF6B00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

/* ===== TELEGRAM FLOAT ===== */
.ygm-tg-float {
    position: fixed;
    bottom: 22px;
    right: 16px;
    z-index: 150;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0088cc, #00aaee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px #0088cc60;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ygm-tg-float:active { transform: scale(0.9); }

.ygm-tg-float i {
    font-size: 24px;
    color: #fff;
}

/* ===== CARD FADE-IN ANIMATION ===== */
@keyframes card-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ygm-app-card {
    animation: card-in 0.35s ease both;
}



/* stagger via nth-child */
.ygm-apps-list .ygm-app-card:nth-child(1)  { animation-delay: 0.05s; }
.ygm-apps-list .ygm-app-card:nth-child(2)  { animation-delay: 0.10s; }
.ygm-apps-list .ygm-app-card:nth-child(3)  { animation-delay: 0.15s; }
.ygm-apps-list .ygm-app-card:nth-child(4)  { animation-delay: 0.20s; }
.ygm-apps-list .ygm-app-card:nth-child(5)  { animation-delay: 0.25s; }
.ygm-apps-list .ygm-app-card:nth-child(6)  { animation-delay: 0.30s; }
.ygm-apps-list .ygm-app-card:nth-child(7)  { animation-delay: 0.35s; }
.ygm-apps-list .ygm-app-card:nth-child(8)  { animation-delay: 0.40s; }
.ygm-apps-list .ygm-app-card:nth-child(9)  { animation-delay: 0.45s; }
.ygm-apps-list .ygm-app-card:nth-child(10) { animation-delay: 0.50s; }



html {
    margin: 0px !important;
}