@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    /* Color Palette - Luxury Obsidian & Casino Gold */
    --bg-obsidian: #07090e;
    --bg-surface: #0e131f;
    --bg-card: rgba(18, 25, 41, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.4);
    
    /* Gold & Accents */
    --gold-light: #fff2b2;
    --gold-main: #d4af37;
    --gold-dark: #997311;
    --gold-gradient: linear-gradient(135deg, #fff3b3 0%, #e6c158 40%, #c4961b 80%, #fff2a3 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    
    /* Neons */
    --neon-cyan: #00f2fe;
    --neon-amber: #f59e0b;
    --neon-green: #10b981;
    --neon-red: #ef4444;
    --neon-purple: #8b5cf6;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    
    /* Text */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
}

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

body {
    background-color: var(--bg-obsidian);
    background-image: 
        radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(0, 242, 254, 0.06) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-main);
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-cyan {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: 1px solid rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: #fff;
    border: 1px solid rgba(42, 171, 238, 0.4);
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.25);
}
.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(42, 171, 238, 0.5);
    color: #fff;
}
.btn-cyan:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

/* HEADER & NAVBAR */
.top-header {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-obsidian);
    box-shadow: var(--gold-glow);
    font-weight: 900;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* MARQUEE BAR */
.marquee-bar {
    background: linear-gradient(90deg, #131c31 0%, #1a2540 50%, #131c31 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    align-items: center;
}

.marquee-badge {
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 6px;
    margin-right: 15px;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.marquee-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* PROMO SLIDING BANNER (CAROUSEL SLIDER) */
.banners-container {
    width: 100%;
}

.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
    margin: 24px 0 10px;
    background: #070b14;
}

.banner-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.banner-slide-fallback {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 75% 50%, rgba(212, 175, 55, 0.22) 0%, transparent 60%),
                linear-gradient(135deg, #060911 0%, #151d33 45%, #281e0c 80%, #0d1322 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 1;
}

.banner-slide-content-left {
    max-width: 720px;
}

.banner-slide-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.25;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.9));
    margin-top: 6px;
}

.banner-slide-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 5;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(7, 11, 20, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}
.slider-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--gold-glow);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.35s ease;
}
.slider-dot.active {
    width: 36px;
    border-radius: 6px;
    background: var(--gold-main);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
    .banner-slider-wrapper { height: 165px; margin: 14px 0 6px; border-radius: 16px; }
    .banner-slide-fallback { padding: 8px 16px; flex-direction: column; justify-content: center; text-align: center; gap: 8px; }
    .banner-slide-title { font-size: 1rem; line-height: 1.25; margin-top: 0; }
    .banner-badge-live { font-size: 0.65rem; padding: 2px 8px; margin-bottom: 2px; }
    .slider-btn { width: 28px; height: 28px; font-size: 1.2rem; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .slider-dots { bottom: 8px; gap: 6px; }
    .slider-dot { width: 6px; height: 6px; }
    .slider-dot.active { width: 20px; border-radius: 3px; }
    .btn-banner-cta { padding: 6px 12px !important; font-size: 0.72rem !important; }
}

/* HERO BANNER & FILTER SECTION */
.hero-section {
    padding: 40px 0 20px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px;
}

.filter-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    width: 100%;
    box-sizing: border-box;
}

.category-tabs {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 10px;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.category-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #fff;
    background: var(--bg-glass-hover);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.search-box {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 10px 16px 10px 40px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}
.search-input:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

/* MARKETS GRID */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 24px;
    padding-bottom: 60px;
}

.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.market-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
}

.market-card:hover::before {
    opacity: 1;
    box-shadow: var(--gold-glow);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.market-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.market-flag {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.market-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.market-date {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(0.95); opacity: 1; }
}

.schedule-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}

.schedule-item {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.schedule-item span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* RESULT TERAKHIR BOX (Keluaran Result) */
.result-highlight-box {
    background: linear-gradient(145deg, #090e17 0%, #161e31 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.6);
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.result-number {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--gold-light);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    display: block;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-card {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
}

/* MODAL PREDIKSI LENGKAP */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0f1626;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #0f1626;
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.pred-section {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
    position: relative;
}

.pred-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pred-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-small {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy-small:hover {
    background: var(--gold-main);
    color: #000;
}

/* Lottery Balls for BBFS */
.bbfs-balls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px 0;
}

.lottery-ball {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff3b3, #d4af37 60%, #8c660d);
    color: #000;
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5), inset 0 -4px 6px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.lottery-ball:nth-child(even) {
    animation-delay: 1.5s;
    background: radial-gradient(circle at 30% 30%, #00f2fe, #0284c7 60%, #0369a1);
    color: #fff;
}

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

/* Number Pills for 4D/3D/2D */
.number-grid-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.num-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    transition: all 0.2s;
}
.num-pill:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: scale(1.05);
}

.text-value-box {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

/* FOOTER */
.site-footer {
    background: #040609;
    border-top: 1px solid var(--border-glass);
    padding: 40px 0 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.copyright {
    color: #475569;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* TOAST NOTIFICATION */
.toast-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* PANEL ADMIN STYLES */
.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.admin-input {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 4px;
    margin: 20px 0;
    outline: none;
}
.admin-input:focus {
    border-color: var(--gold-main);
}

.admin-dashboard {
    display: none; /* Shown after login */
    padding: 30px 0 60px;
}

.admin-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    margin-bottom: 30px;
}

.admin-section-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 16px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 14px 16px;
    background: rgba(0,0,0,0.4);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-glass);
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.95rem;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.form-control {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}
.form-control:focus {
    border-color: var(--gold-main);
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .nav-content {
        height: 58px;
    }
    .logo-title {
        font-size: 1.15rem;
    }
    .nav-actions {
        gap: 6px;
    }
    .nav-actions .btn {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
        white-space: nowrap;
        border-radius: 6px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.88rem !important;
        padding: 0 12px !important;
        margin-bottom: 20px !important;
    }
    .markets-grid {
        grid-template-columns: 1fr;
    }
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }
    .category-tabs {
        width: 100%;
        flex: none;
        padding-bottom: 6px;
    }
    .search-box {
        width: 100%;
        flex-shrink: 1;
    }
    .modal-container {
        max-height: 95vh;
    }
    .seo-article-box {
        padding: 22px 18px !important;
        font-size: 0.88rem !important;
        line-height: 1.7 !important;
        border-radius: 14px !important;
    }
    .seo-article-box h3 {
        font-size: 1.25rem !important;
        margin-bottom: 16px !important;
    }
}
