/* ============= RESET & BASE ============= */
html { scroll-behavior: smooth; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background-color: #fff; color: #333; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Screen Reader Only - for SEO headings */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 10px 15px;
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}
.breadcrumb a {
    color: #1a73e8;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    margin: 0 4px;
    color: #999;
}

/* ============= LAYOUT ============= */
.container { width: 90%; max-width: 750px; margin: 0 auto; padding: 20px; }

/* ============= HEADER ============= */
.header {
    background: var(--theme-color, #09203f);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-top { width: 38px; height: 38px; border-radius: 8px; }
.header-text {
    flex-grow: 1;
    margin: 0 10px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}
.header-right { display: flex; align-items: center; gap: 8px; }
.sub-badge {
    background: rgba(90, 218, 255, 0.2);
    border: 1px solid #5adaff;
    color: #5adaff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.sub-badge i { font-size: 11px; color: #ffeb3b; }
.telegram-top { color: #fff; font-size: 28px; }
.icon {
    display: block;
    padding: 4px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    border: none;
}
.icon:hover { background: rgba(255,255,255,0.25); }

/* ============= MENU DROPDOWN ============= */
.menu-container {
    display: none;
    background: linear-gradient(to top, #d3d3d3 0%, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%);
    padding: 15px;
}
.menu-row { display: flex; justify-content: space-around; margin-bottom: 5px; }
.menu-item {
    background: linear-gradient(109.6deg, #1b1b4f 11.2%, #78c9f4 100.2%);
    color: #fff;
    padding: 8px 10px;
    margin: 4px;
    flex: 1;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s;
}
.menu-item:hover { transform: scale(1.05); }
.menu-item i { margin-right: 4px; }

/* ============= NAVBAR ============= */
.navbar {
    background-color: #f2f2f2;
    border-top: 1px solid #001e00;
    border-bottom: 2px solid #001e00;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}
.navbar::-webkit-scrollbar { display: none; }
.navbar a {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    color: #000;
    padding: 7px 10px;
    border-right: 2px solid #e5e4e2;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}
.navbar a:last-child { border-right: none; }
.navbar a.active, .navbar a:hover {
    background: linear-gradient(114.3deg, #137e39 .2%, #08415b 68.5%);
    color: #fff;
}
.navbar a i { margin-right: 3px; }

/* ============= BANNER & HERO CONTAINER ============= */
.hero-container {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}
.main-banner {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #1b0730 0%, #080114 100%);
    border-bottom: 2px solid #ffd700;
}
.main-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 480px;
    margin: 0 auto;
}
.banner-watermark {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(6px);
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.banner-watermark i { color: #27ae60; margin-right: 4px; }
.hero-ticker {
    background: #09203f;
    color: #fff;
    font-size: 12px;
    padding: 8px 12px;
    text-align: center;
    border-bottom: 1px solid #133a69;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.ticker-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff66;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00ff66;
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

/* ============= STATISTICS GRID ============= */
/* ============= SEO TRUST HIGHLIGHTS ============= */
.trust-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px 10px;
    margin: 8px 0;
}
.trust-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #09203f, #1e3c72);
    color: #5adaff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.trust-icon.gift { background: linear-gradient(135deg, #dc2626, #f97316); color: #fff; }
.trust-icon.shield { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; }
.trust-icon.game { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.trust-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.trust-text strong {
    font-size: 12px;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.trust-text span {
    font-size: 10px;
    color: #64748b;
    white-space: nowrap;
}

/* ============= SEARCH & FILTER SECTION ============= */
.search-section {
    padding: 6px 10px 10px 10px;
}
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.search-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: 12px 40px 12px 38px;
    font-size: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    background: #fff;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}
.clear-search-btn {
    position: absolute;
    right: 12px;
    background: #cbd5e1;
    border: none;
    color: #475569;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.clear-search-btn:hover {
    background: #94a3b8;
    color: #fff;
}
.filter-pills {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
    padding: 7px 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.filter-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.filter-pill.active {
    background: var(--theme-color, #09203f);
    color: #fff;
    border-color: var(--theme-color, #09203f);
    box-shadow: 0 2px 8px rgba(9, 32, 63, 0.25);
}
.filter-pill i { font-size: 11px; }
.search-counter {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 4px;
    padding-left: 4px;
    font-weight: 600;
}

/* ============= CATEGORY BUTTONS ============= */
.category-buttons { display: flex; gap: 10px; justify-content: center; padding: 6px 10px 10px 10px; }
.category-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    background: var(--theme-color, #09203f);
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.category-btn:hover { transform: translateY(-2px); opacity: 0.95; box-shadow: 0 5px 12px rgba(0,0,0,0.15); }
.category-btn i { margin-right: 5px; }

/* ============= GAME CARDS ============= */
.games-grid { padding: 4px 10px 10px 10px; }

.game-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f5f9;
}
.game-box:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); border-color: #e2e8f0; }
.game-img-link { display: block; flex-shrink: 0; }
.game-box-img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.game-box-info { flex: 1; min-width: 0; }
.game-box-name {
    font-weight: 800;
    font-size: 15.5px;
    margin-bottom: 2px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.verified-pill {
    font-size: 10px;
    font-weight: 700;
    background: #dcfce7;
    color: #15803d;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    vertical-align: middle;
}
.verified-pill i { font-size: 9px; }
.game-rating {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.game-rating span {
    color: #94a3b8;
    font-weight: 500;
    margin-left: 2px;
}
.game-box-bonus {
    color: #dc2626;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}
.game-box-bonus i { color: #dc2626; }
.game-box-withdraw {
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}
.game-box-withdraw i { color: #16a34a; }
.game-box-action { flex-shrink: 0; }

.download-btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    text-align: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.download-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}
.download-btn i { margin-right: 4px; }

/* UPCOMING APP & COUNTDOWN STYLES */
.upcoming-pill {
    font-size: 10px;
    font-weight: 800;
    background: #ede9fe;
    color: #7c3aed;
    border: 1px solid #c4b5fd;
    padding: 2px 7px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    vertical-align: middle;
    text-transform: uppercase;
}
.upcoming-pill i { font-size: 9px; }

.card-countdown {
    font-size: 11px;
    font-weight: 800;
    color: #7c3aed;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.spotlight-card.rank-upcoming {
    border-color: #8b5cf6;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.18);
}
.spotlight-card.rank-upcoming .spotlight-rank {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #ffffff;
    font-weight: 800;
}

.btn-upcoming {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4) !important;
    color: #fff !important;
}
.btn-upcoming:hover {
    background: linear-gradient(135deg, #7c3aed, #5b21b6) !important;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.6) !important;
}

.live-launched-pill {
    background: #dcfce7;
    color: #15803d;
    font-weight: 800;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
}

/* UPCOMING HERO COUNTDOWN WIDGET (Game Post Page) */
.upcoming-countdown-hero {
    background: linear-gradient(135deg, #09152b 0%, #1e1b4b 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.6);
    border-radius: 16px;
    padding: 18px 14px;
    margin: 15px auto 4px auto;
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25), inset 0 1px 1px rgba(255,255,255,0.15);
}
.countdown-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.countdown-hero-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}
.countdown-clock-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px 0 12px 0;
    width: 100%;
    box-sizing: border-box;
}
.countdown-unit {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 8px 6px;
    flex: 1;
    min-width: 48px;
    max-width: 72px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}
.unit-val {
    font-size: 22px;
    font-weight: 900;
    color: #facc15;
    line-height: 1;
    font-family: monospace, system-ui, sans-serif;
}
.unit-label {
    font-size: 9.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 3px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.countdown-sep {
    font-size: 18px;
    font-weight: 900;
    color: #a5b4fc;
    line-height: 1;
    user-select: none;
}
.countdown-hero-desc {
    font-size: 12.5px;
    color: #cbd5e1;
    line-height: 1.5;
    max-width: 440px;
    margin: 0 auto;
}
.countdown-action-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}
.countdown-action-wrap .download-btn {
    width: 100%;
    max-width: 360px;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============= NO RESULTS FALLBACK ============= */
.no-results-box {
    text-align: center;
    padding: 35px 20px;
    background: #f8fafc;
    border-radius: 14px;
    margin: 15px 10px;
    border: 2px dashed #cbd5e1;
}
.no-results-box i {
    font-size: 40px;
    color: #94a3b8;
    margin-bottom: 10px;
}
.no-results-box h3 {
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 6px;
}
.no-results-box p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}
.clear-filter-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}
.clear-filter-btn:hover { background: #1d4ed8; }

/* ============= LIVE ACTIVITY FEED ============= */
.live-activity-bar {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 6px 12px;
    margin: 8px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
}
.live-activity-content {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.live-badge {
    background: #16a34a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}
.live-text {
    font-size: 11.5px;
    color: #f1f5f9;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.3s ease;
}

/* ============= SECTION HEADINGS ============= */
.section-heading {
    margin: 14px 10px 8px 10px;
}
.heading-badge {
    font-size: 10.5px;
    font-weight: 800;
    color: #3b82f6;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.section-heading h2 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
}

/* ============= 🏆 TRENDING HORIZONTAL SLIDER ============= */
.spotlight-section {
    padding: 6px 0 12px 0;
    position: relative;
}
.slider-arrows {
    display: flex;
    gap: 6px;
    align-items: center;
}
.slider-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.slider-arrow-btn:hover {
    background: var(--theme-color, #09203f);
    color: #fff;
    border-color: var(--theme-color, #09203f);
    transform: scale(1.08);
}
.spotlight-slider-wrapper {
    position: relative;
    padding: 0 10px;
}
.spotlight-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    padding-top: 4px;
    scroll-behavior: smooth;
}

/* Custom Sleek Scrollbar for Desktop & Mobile */
.spotlight-slider::-webkit-scrollbar {
    height: 6px;
}
.spotlight-slider::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.spotlight-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 10px;
}
.spotlight-slider::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #2563eb, #4f46e5);
}

.spotlight-card {
    flex: 0 0 210px;
    min-width: 210px;
    max-width: 230px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.spotlight-card.rank-1 {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}
.spotlight-card.rank-2 {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}
.spotlight-card.rank-3 {
    border-color: #ec4899;
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%);
}
.spotlight-card.rank-other {
    border-color: #8b5cf6;
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
}
.spotlight-rank {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: inline-block;
    align-self: flex-start;
    color: #0f172a;
}
.rank-1 .spotlight-rank { background: #fef3c7; color: #b45309; }
.rank-2 .spotlight-rank { background: #dbeafe; color: #1d4ed8; }
.rank-3 .spotlight-rank { background: #fce7f3; color: #be185d; }
.rank-other .spotlight-rank { background: #ede9fe; color: #6d28d9; }

.spotlight-body {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.spotlight-img-link { flex-shrink: 0; }
.spotlight-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.spotlight-info {
    min-width: 0;
    flex: 1;
}
.spotlight-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.spotlight-bonus {
    font-size: 12px;
    font-weight: 800;
    color: #dc2626;
    margin-top: 2px;
}
.spotlight-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.rank-1 .spotlight-btn { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.rank-2 .spotlight-btn { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.rank-3 .spotlight-btn { background: linear-gradient(135deg, #ec4899, #db2777); color: #fff; }
.rank-other .spotlight-btn { background: linear-gradient(135deg, #8b5cf6, #6d28d9); color: #fff; }
.spotlight-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 14px rgba(0,0,0,0.2);
}

/* ============= 📊 COMPARISON TABLE ============= */
.comparison-section {
    margin: 15px 10px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: left;
}
.summary-table th {
    background: #f8fafc;
    color: #475569;
    padding: 10px 8px;
    font-weight: 800;
    border-bottom: 2px solid #cbd5e1;
    white-space: nowrap;
}
.summary-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.game-table-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}
.game-table-cell img {
    border-radius: 8px;
    object-fit: cover;
}
.bonus-cell {
    color: #dc2626;
    font-weight: 800;
    white-space: nowrap;
}
.withdraw-cell {
    color: #16a34a;
    font-weight: 800;
    white-space: nowrap;
}
.table-download-btn {
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    white-space: nowrap;
}
.table-download-btn:hover {
    background: #1d4ed8;
}

/* ============= TELEGRAM / WHATSAPP CARDS ============= */
.group-card {
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0efff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 10px;
    padding: 12px 14px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 136, 204, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.group-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 136, 204, 0.2); }
.group-card1 {
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 10px;
    padding: 12px 14px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.group-card1:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2); }
.telegram-card { animation: telegram-border-animation 2s infinite; }
@keyframes telegram-border-animation {
    0% { border-color: transparent; }
    50% { border-color: #0088cc; }
    100% { border-color: transparent; }
}
.whatsapp-card { animation: whatsapp-border-animation 2s infinite; }
@keyframes whatsapp-border-animation {
    0% { border-color: transparent; }
    50% { border-color: #22c55e; }
    100% { border-color: transparent; }
}
.group-card-left { display: flex; align-items: center; gap: 12px; }
.group-card-icon { font-size: 32px; }
.group-card-icon.tg { color: #0088cc; }
.group-card-icon.wa { color: #22c55e; }
.join-text { font-weight: 800; color: #004f7a; font-size: 14px; }
.join-text1 { font-weight: 800; color: #14532d; font-size: 14px; }
.join-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12.5px;
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.join-btn.tg { background: linear-gradient(135deg, #0088cc, #005f8d); }
.join-btn.wa { background: linear-gradient(135deg, #22c55e, #15803d); }

/* ============= TABS ============= */
.tabs {
    display: flex;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin: 12px 10px;
    gap: 8px;
}
.tabs .tab {
    flex: 1;
    padding: 11px 14px;
    border: 2px solid #cbd5e1;
    background-color: #f8fafc;
    color: #334155;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.tabs .tab:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.tabs .tab.active {
    background: var(--theme-color, #09203f);
    color: #fff;
    border-color: var(--theme-color, #09203f);
    box-shadow: 0 4px 12px rgba(9, 32, 63, 0.25);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============= FAQ ============= */
.faq-container { max-width: 700px; margin: 20px auto; padding: 10px; }
.faq-title { text-align: center; font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #333; }
.faq-item { margin-bottom: 10px; }
.faq-question {
    position: relative;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    padding: 12px 35px 12px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}
.faq-question:hover { background: linear-gradient(135deg, #303f9f, #3f51b5); }
.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
}
.faq-question.active::after { content: "\2212"; }
.faq-answer {
    font-size: 14px;
    color: #444;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
}
.faq-answer.show { max-height: 500px; padding: 12px; }

/* ============= INFO TABLE ============= */
.info-table {
    border-collapse: collapse;
    width: 94%;
    margin: 15px auto;
    background: linear-gradient(to right, #e8e8e8, #f9f9f9);
    border-radius: 10px;
    overflow: hidden;
}
.info-table th {
    background-color: #f2f2f2;
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: red;
    border: 1px solid #ddd;
}
.info-table td {
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ddd;
}
.info-table tr:nth-child(even) { background-color: #f9f9f9; }
.info-table a { color: #00f; font-weight: 700; }

/* ============= SEO CONTENT ============= */
.seo-content { padding: 10px 15px; margin-bottom: 80px; }
.seo-content h1 { font-size: 24px; color: #222; margin-bottom: 12px; }
.seo-content h2 {
    color: #cc0000;
    border-left: 6px solid #0000ff;
    border-bottom: 2px solid #dedede;
    padding: 10px 7px;
    margin-top: 20px;
    font-size: 18px;
}
.seo-content h3 { padding: 8px 0; color: #333; }
.seo-content p { font-size: 14px; line-height: 1.7; color: #444; padding: 6px 0; }
.seo-content ul { padding-left: 25px; margin: 8px 0; }
.seo-content li { font-size: 14px; padding: 3px 0; line-height: 1.6; }

/* ============= DISCLAIMER BOX ============= */
.red-disclaimer-box {
    background-color: #fff7f7;
    border: 2px solid #ff5733;
    border-radius: 5px;
    color: #333;
    font-size: 11px;
    line-height: 1.5;
    padding: 12px;
    margin: 15px 10px;
}
.red-disclaimer-box strong { color: #cc0000; }

/* ============= PAGE & POST CONTENT HEADING HIERARCHY ============= */
.page-content {
    padding: 20px 15px;
    line-height: 1.8;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.page-content h1 {
    font-size: 26px;
    font-weight: 800;
    color: #09203f;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffd700;
    line-height: 1.3;
}
.page-content h2 {
    color: #09203f;
    border-left: 5px solid #e41131;
    border-bottom: 2px solid #eef2f6;
    padding: 8px 12px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 14px;
    background: #f8fafc;
    border-radius: 0 6px 6px 0;
}
.page-content h3 {
    color: #e41131;
    font-size: 17px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-content h3::before {
    content: "❖";
    color: #ffd700;
    font-size: 14px;
}
.page-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin-top: 14px;
    margin-bottom: 8px;
}
.page-content p {
    font-size: 14.5px;
    color: #334155;
    margin-bottom: 14px;
    line-height: 1.8;
}
.page-content ul, .page-content ol {
    margin: 12px 0 16px 24px;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.8;
}
.page-content li {
    margin-bottom: 6px;
}
.page-content blockquote {
    background: #f1f5f9;
    border-left: 4px solid #09203f;
    padding: 12px 18px;
    margin: 16px 0;
    font-style: italic;
    color: #475569;
    border-radius: 0 8px 8px 0;
}
.page-content a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
}
.page-content a:hover {
    color: #09203f;
}

/* ============= GAME DETAILS ============= */
.game-detail-header { text-align: center; padding: 25px 15px; }
.game-detail-img {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #f0f0f0;
}
.page-title {
    font-size: 26px;
    font-weight: 800;
    color: #09203f;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
}
.game-detail-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}
.game-detail-meta { display: flex; justify-content: center; gap: 25px; margin: 12px 0; flex-wrap: wrap; }
.game-detail-bonus {
    color: #A80000;
    font-weight: 700;
    font-size: 15px;
    display: flex; align-items: center; gap: 6px;
}
.game-detail-withdraw {
    color: #0a8a0a;
    font-weight: 700;
    font-size: 15px;
    display: flex; align-items: center; gap: 6px;
}
.game-detail-download { text-align: center; margin: 20px 0; }
.game-detail-download .download-btn {
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 25px;
}
.game-detail-description { padding: 15px; line-height: 1.8; font-size: 14px; color: #444; }
.related-games { padding: 15px; margin-bottom: 80px; }
.related-games h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #cc0000;
    border-left: 5px solid #0000ff;
    padding-left: 10px;
}

/* ============= FOOTER BAR ============= */
.footer-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99;
    max-width: 750px;
    width: 100%;
    background: linear-gradient(to top, #09203f 0%, #537895 100%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.footer-bar a {
    color: #fff;
    text-decoration: none;
    padding: 8px 5px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    flex: 1;
    transition: 0.3s;
}
.footer-bar a:hover { background: rgba(255,255,255,0.1); }
.footer-bar a i { display: block; font-size: 18px; margin-bottom: 3px; }

/* ============= FLOATING BUTTON ============= */
.floating-telegram {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 999;
    animation: float-bounce 2s ease-in-out infinite;
}
.floating-telegram i { font-size: 42px; color: #0088cc; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============= SCROLL TO TOP ============= */
.scroll-top {
    position: fixed;
    bottom: 70px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5adaff, #5468ff);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(84,104,255,0.4);
    transition: 0.3s;
}
.scroll-top:hover { transform: scale(1.1); }
.scroll-top.visible { display: flex; }

/* ============= 404 PAGE ============= */
.error-page {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 80px;
}
.error-page h1 { font-size: 72px; color: #5468ff; margin-bottom: 10px; }
.error-page h2 { font-size: 24px; color: #333; margin-bottom: 15px; }
.error-page p { font-size: 14px; color: #666; margin-bottom: 25px; }
.error-page .download-btn { padding: 12px 30px; font-size: 15px; }

/* ============= UTILITY ============= */
.center-text { text-align: center; font-size: 1rem; font-weight: 700; line-height: 1.5; }
.small-center-text { text-align: center; font-size: .7rem; font-weight: 700; line-height: 1.5; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-active { background: #e8f5e9; color: #2e7d32; }
.badge-inactive { background: #fce4ec; color: #c62828; }

/* ============= RESPONSIVE & MOBILE OPTIMIZATIONS ============= */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

img, iframe, object, embed, video, table {
    max-width: 100%;
}

.info-table {
    width: 100%;
    max-width: 100%;
    display: table;
    word-break: break-word;
}

@media only screen and (max-width: 768px) {
    .container { padding: 12px; width: 100%; }
    .header-text { font-size: 16px; }
    .footer-bar { width: 100%; left: 0; transform: none; }
    .footer-bar a { min-height: 48px; display: flex; flex-direction: column; justify-content: center; }
    .category-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .download-btn { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
}

@media only screen and (max-width: 480px) {
    .container { padding: 8px; width: 100%; }
    .header { padding: 8px 10px; }
    .logo-top { width: 34px; height: 34px; }
    .header-text { font-size: 15px; }
    .menu-item { font-size: 11px; padding: 8px 4px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .trust-highlights { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 4px 6px; }
    .trust-card { padding: 6px; gap: 6px; }
    .trust-icon { width: 28px; height: 28px; font-size: 12px; }
    .trust-text strong { font-size: 11px; }
    .trust-text span { font-size: 9.5px; }
    .spotlight-slider-wrapper { padding: 0 4px; }
    .spotlight-card { flex: 0 0 170px; min-width: 170px; max-width: 180px; padding: 10px 8px; }
    .spotlight-img { width: 44px; height: 44px; }
    .spotlight-name { font-size: 12.5px; }
    .spotlight-bonus { font-size: 11px; }
    .spotlight-btn { font-size: 11px; padding: 6px 8px; }
    .search-section { padding: 4px 6px 8px 6px; }
    .search-input { font-size: 13px; padding: 10px 36px 10px 34px; }
    .search-icon { left: 12px; font-size: 13px; }
    .category-buttons { padding: 8px 4px; gap: 8px; }
    .category-btn { font-size: 13px; padding: 10px 12px; }
    .game-box { padding: 10px 8px; gap: 10px; }
    .game-box-img { width: 55px; height: 55px; min-width: 55px; border-radius: 12px; }
    .game-box-name { font-size: 14px; }
    .game-box-bonus, .game-box-withdraw { font-size: 11.5px; }
    .download-btn { padding: 8px 14px; font-size: 12px; font-weight: 800; border-radius: 20px; }
    .hero-ticker { font-size: 11px; padding: 6px 8px; }
    .banner-watermark { font-size: 11px; padding: 3px 8px; bottom: 8px; right: 8px; }
    .info-table th, .info-table td { padding: 10px 8px; font-size: 13px; }
    .upcoming-countdown-hero { padding: 14px 10px; margin: 10px 0 2px 0; }
    .countdown-hero-badge { font-size: 10px; padding: 3px 8px; margin-bottom: 8px; }
    .countdown-hero-title { font-size: 15px; margin-bottom: 10px; }
    .countdown-clock-boxes { gap: 4px; margin: 6px 0 10px 0; }
    .countdown-unit { min-width: 44px; padding: 6px 2px; border-radius: 8px; }
    .unit-val { font-size: 17px; }
    .unit-label { font-size: 8px; }
    .countdown-sep { font-size: 14px; margin: 0; }
    .countdown-hero-desc { font-size: 11.5px; }
    .spotlight-card.rank-upcoming { flex: 0 0 180px; min-width: 180px; }
    .card-countdown { font-size: 10px; padding: 2px 5px; }
}

@media only screen and (max-width: 360px) {
    .header-text { font-size: 13.5px; }
    .spotlight-card { flex: 0 0 155px; min-width: 155px; }
    .spotlight-card.rank-upcoming { flex: 0 0 165px; min-width: 165px; }
    .countdown-unit { min-width: 38px; padding: 5px 1px; }
    .unit-val { font-size: 15px; }
    .unit-label { font-size: 7.5px; }
    .game-box-name { font-size: 13px; }
    .download-btn { padding: 7px 10px; font-size: 11px; }
}

/* ============= 🔮 USER-FRIENDLY GLASSMORPHISM NOTIFICATION MODAL ============= */
.notify-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 560px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 22px 24px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: glassNotifySlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes glassNotifySlideUp {
    from { opacity: 0; transform: translate(-50%, 50px) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.notify-btn-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.notify-btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.notify-banner-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.notify-icon-glow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(234, 88, 12, 0.25));
    border: 1px solid rgba(245, 158, 11, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}
.notify-bell-icon {
    font-size: 22px;
    color: #fbbf24;
    animation: ringBell 2s infinite;
}
@keyframes ringBell {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(14deg); }
    20%, 40% { transform: rotate(-14deg); }
    50% { transform: rotate(0); }
}

.notify-title-group {
    min-width: 0;
    flex: 1;
}
.notify-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: #93c5fd;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.notify-banner-title {
    font-size: 16.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.2px;
    margin: 0;
}

.notify-banner-body {
    font-size: 13.5px;
    line-height: 1.55;
    color: #cbd5e1;
    font-weight: 500;
}

.notify-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.notify-btn-allow {
    flex: 1.4;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.45);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.notify-btn-allow:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
}
.notify-btn-allow:active { transform: scale(0.98); }

.notify-btn-dismiss {
    flex: 0.8;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}
.notify-btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

@media only screen and (max-width: 480px) {
    .notify-banner {
        width: 94%;
        bottom: 16px;
        padding: 18px 16px;
        gap: 12px;
        border-radius: 18px;
    }
    .notify-icon-glow { width: 42px; height: 42px; }
    .notify-bell-icon { font-size: 19px; }
    .notify-banner-title { font-size: 15px; }
    .notify-banner-body { font-size: 12.5px; }
    .notify-btn-allow { font-size: 13.5px; padding: 11px 14px; }
    .notify-btn-dismiss { font-size: 12.5px; padding: 11px 12px; }
}

