:root {
    --primary-burgundy: #0F2C59;
    --primary-gradient: linear-gradient(135deg, #081B38 0%, #0F2C59 50%, #030C1A 100%);
    --accent-glow: rgba(15, 44, 89, 0.05);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --card-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.04), 0 2px 8px -2px rgba(0, 0, 0, 0.02);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.2px;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #fafbfc;
    background-image: radial-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.app-view {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bg-wave { position: absolute; left: 0; width: 100%; z-index: 0; pointer-events: none; }
.bg-wave-top { top: 0; height: 11vh; min-height: 95px; }

/* TOP HEADER */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(12px + env(safe-area-inset-top)) 16px 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 27, 56, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 8px;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.back-action-btn, .search-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    flex-shrink: 0;
}
.back-action-btn:active, .search-action-btn:active { transform: scale(0.92); }
.back-action-btn svg, .search-action-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.header-title-text { font-size: 15px; font-weight: 800; color: #ffffff; white-space: nowrap; }

.header-live-clock-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
    margin: 0 auto;
}

/* MAIN APP CONTENT AREA */
.app-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px calc(95px + env(safe-area-inset-bottom, 24px)) 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* TOP MENU - FULL WIDTH FLEX GRID */
.category-filter-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.filter-pill {
    flex: 1;
    padding: 12px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: #ffffff;
    border: 1px solid var(--border-light);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill.active-pill {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: var(--primary-burgundy);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.broadcasts-container { display: flex; flex-direction: column; gap: 14px; }

.featured-broadcast-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.featured-broadcast-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.featured-broadcast-card.native-ad-card {
    padding: 14px 16px;
    min-height: 290px;
}
.featured-broadcast-card.native-ad-card::before { background: #2563eb; }

.ad-script-wrapper {
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 6px; }

.spotlight-pill {
    background: rgba(15, 44, 89, 0.08);
    color: var(--primary-burgundy);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.spotlight-pill.system-badge { background: #f0f4f9; color: #2563eb; }
.spotlight-pill.inline-ad-badge { background: #f0f4f9; color: #2563eb; font-weight: 800; }

.timestamp-log-text { font-size: 11px; font-weight: 600; color: var(--text-muted); font-variant-numeric: tabular-nums; }

.broadcast-image-frame {
    width: 100%;
    max-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    background: #f1f5f9;
    position: relative;
    cursor: pointer;
}

.broadcast-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.broadcast-image-frame img.loaded { filter: blur(0); }

.clickable-news-content {
    cursor: pointer;
}

.broadcast-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 6px;
}

.broadcast-body-text {
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    line-height: 1.55;
    white-space: pre-wrap;
}

.redirect-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px var(--accent-glow);
    transition: transform 0.15s ease, opacity 0.2s;
}
.redirect-link-btn:active { transform: scale(0.97); }
.redirect-link-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.card-footer-branding-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    width: 100%;
}

.inline-card-logo { width: 18px; height: 18px; object-fit: contain; opacity: 0.85; }

.promo-redeem-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--card-shadow);
    margin-bottom: 14px;
}

.promo-header-group { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.promo-gift-badge { font-size: 20px; }
.promo-header-title { font-size: 14.5px; font-weight: 800; color: var(--text-dark); }
.promo-header-subtitle { font-size: 11.5px; color: var(--text-muted); font-weight: 500; }

.promo-action-fields { display: flex; gap: 6px; }

.promo-input-field {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    background-color: var(--bg-light);
    outline: none;
}

.promo-submit-btn {
    padding: 0 18px;
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive YouTube Video Wrapper */
.reader-video-container {
    width: 100%;
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.reader-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Admin Action Buttons */
.admin-action-row {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 8px 0;
}
.admin-duplicate-btn {
    background: #0F2C59;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.admin-duplicate-btn:hover {
    background: #081B38;
}

/* Search Overlay Drawer */
.search-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 56, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    flex-direction: column;
    padding: calc(12px + env(safe-area-inset-top)) 16px 20px 16px;
}
.search-modal-overlay.active-search { display: flex; }

.search-box-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.search-input-wrapper svg { width: 18px; height: 18px; color: var(--text-muted); margin-right: 8px; flex-shrink: 0; }

.search-news-field {
    width: 100%;
    height: 44px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
}

.close-search-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
}

.search-results-area { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }

/* Full News Modal Page Header */
.full-news-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    flex-direction: column;
    overflow: hidden;
}
.full-news-modal-overlay.active-reader { display: flex; }

.news-reader-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(12px + env(safe-area-inset-top)) 16px 12px 16px;
    background: var(--primary-gradient);
    color: #ffffff;
}

.close-reader-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.close-reader-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.news-reader-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px 40px 16px;
}

.reader-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.reader-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 14px;
}

.reader-image-frame {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
}

.reader-image-frame img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

.reader-full-body {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    white-space: pre-wrap;
    font-weight: 500;
}

/* Custom Popup Alert */
.custom-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 56, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2100;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.custom-popup-modal {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08);
}
.custom-popup-overlay.show-popup { display: flex; }

.popup-status-icon { font-size: 40px; margin-bottom: 12px; display: inline-block; }
.popup-success-amount { font-size: 32px; font-weight: 800; color: #22c55e; margin-bottom: 12px; display: block; }
.popup-main-title { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.popup-body-desc { font-size: 13px; font-weight: 500; color: var(--text-muted); line-height: 1.4; margin-bottom: 20px; }
.popup-dismiss-action { width: 100%; padding: 12px; background: var(--primary-gradient); color: #ffffff; border: none; border-radius: 12px; font-size: 13px; font-weight: 700; cursor: pointer; }

.verified-footer-shield { text-align: center; padding: 24px 0 8px 0; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.footer-shield-text { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.8px; }

/* BOTTOM NAVIGATION MENU - DARK BLUE THEME */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    width: 25%;
    height: 100%;
    transition: color 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    touch-action: manipulation;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-item .icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    border-radius: 16px;
    transition: background-color 0.2s ease;
}

.nav-item.active {
    color: #0F2C59;
    font-weight: 700;
}

.nav-item.active .icon-bg {
    background-color: rgba(15, 44, 89, 0.08);
}

Inside full code