:root {
    --bg-main: #0a0f1d;
    --bg-card: #111827;
    --bg-card-hover: #1f2937;
    --border-color: #374151;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
}

body {
    background-color: var(--bg-main);
    color: #f3f4f6;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1180px !important;
}

.glass-nav {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.ticker-screen-wrapper {
    background: #000;
    border: 1px solid #dc2626;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.25);
    position: relative;
    overflow: hidden;
}

.ticker-header-tag {
    background: #dc2626;
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ticker-screen-content {
    overflow: hidden;
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    background: #000;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: smoothTickerScroll 80s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    color: #fef08a;
    font-size: 1.15rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 40px;
}

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

.cat-badge-আমেরিকা { background-color: #2563eb !important; color: #fff !important; }
.cat-badge-বিশ্বচরাচর { background-color: #0891b2 !important; color: #fff !important; }
.cat-badge-বাংলাদেশ { background-color: #059669 !important; color: #fff !important; }
.cat-badge-custom { background-color: #d97706 !important; color: #fff !important; }

.stat-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
}

.headline-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease;
}
.headline-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.footer-link {
    color: #ffc107 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
}
.footer-link:hover {
    color: #ffd54f !important;
    text-decoration: underline;
}

.type-cursor {
    display: inline-block;
    color: #ffc107;
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
