:root {
    --bg-page: #f8fafc;
    --color-cyan: #02caed;
    --color-yellow: #edca02;
    --color-orange: #f24a02;
    --color-pink: #ee02f2;
    --dark-navy: #0f172a;
    --dark-surface: #1e293b;
}

body {
    background-color: var(--bg-page);
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
}

/* Beautiful Color Accent Bar using the 4 chosen colors */
.color-bar-accent {
    background: linear-gradient(90deg, #02caed 0%, #ee02f2 33%, #f24a02 66%, #edca02 100%);
    height: 4px;
}

/* Beautiful Navbar Styling (Light Theme) */
.navbar-custom {
    background-color: #ffffff;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.05);
}

.nav-link-item {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.015em;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link-item:hover {
    color: #02caed;
}

.nav-link-item.accent-cyan:hover {
    color: #02caed;
}

.nav-link-item.accent-yellow:hover {
    color: #edca02;
}

.nav-link-item.accent-orange:hover {
    color: #f24a02;
}

.nav-link-item.accent-pink:hover {
    color: #ee02f2;
}

/* Top Header & Banner Area */
.top-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.promo-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #02caed, #ee02f2, #f24a02, #edca02);
}

/* Clean Cards on Light Theme background */
.clean-card {
    background-color: #ffffff;
    color: #0f172a;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.clean-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -4px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.dark-clean-card {
    background-color: #0f172a;
    color: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 12px 32px -5px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Color Badges */
.badge-solid-cyan {
    background-color: #02caed;
    color: #000000;
    font-weight: 700;
}

.badge-solid-yellow {
    background-color: #edca02;
    color: #000000;
    font-weight: 700;
}

.badge-solid-orange {
    background-color: #f24a02;
    color: #ffffff;
    font-weight: 700;
}

.badge-solid-pink {
    background-color: #ee02f2;
    color: #ffffff;
    font-weight: 700;
}

/* Article Typography */
.article-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #334155;
}

.article-body h2,
.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #0f172a;
    border-left: 4px solid #02caed;
    padding-left: 0.75rem;
}

/* Ticker text */
.news-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.news-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
