/* === Free Spin Daily — Bootstrap Casino Theme === */

:root {
    --clr-bg: #0f1118;
    --clr-surface: #181b25;
    --clr-card: #1e2230;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-accent: #f0a500;
    --clr-accent-hover: #ffbf33;
    --clr-text: #d5d8e0;
    --clr-heading: #ffffff;
    --clr-muted: #7c8298;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--clr-accent); transition: color .2s; }
a:hover { color: var(--clr-accent-hover); }

.text-accent { color: var(--clr-accent) !important; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    padding: .8rem 0;
    backdrop-filter: blur(12px);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: .5px;
    color: #fff !important;
}
.navbar-brand:hover { color: var(--clr-accent) !important; }
.nav-link {
    color: var(--clr-muted) !important;
    font-weight: 500;
    font-size: .92rem;
    padding: .5rem 1rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    background: rgba(240, 165, 0, .12);
}
.navbar-toggler { border-color: rgba(255,255,255,.15); }

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, #12141e 0%, #1a1d2e 50%, #0f1118 100%);
    padding: 5rem 1rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(240,165,0,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section--sm { padding: 3rem 1rem 2.5rem; }
.hero-section--sm .hero-title { font-size: 2rem; }

.hero-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-muted);
    margin-top: .5rem;
}

/* ===== POST CARDS ===== */
.post-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 165, 0, .35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5), 0 0 20px rgba(240, 165, 0, .07);
}
.post-card .card-img-top {
    height: 220px;
    object-fit: cover;
    filter: brightness(.9);
    transition: filter .3s;
}
.post-card:hover .card-img-top { filter: brightness(1); }
.post-card .card-body { padding: 1.5rem; }
.post-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: .5rem;
}
.post-card .card-title a { color: var(--clr-heading); text-decoration: none; }
.post-card .card-title a:hover { color: var(--clr-accent); }
.post-card .card-text { font-size: .92rem; }

.badge-cat {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.badge-cat a { color: inherit; text-decoration: none; }

/* ===== ACCENT BUTTON ===== */
.btn-accent {
    background: var(--clr-accent);
    color: #000;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    border-radius: 8px;
    padding: .45rem 1.2rem;
    transition: background .2s, transform .15s;
}
.btn-accent:hover {
    background: var(--clr-accent-hover);
    color: #000;
    transform: translateY(-1px);
}
.btn-outline-light {
    border-color: rgba(255,255,255,.2);
    color: var(--clr-muted);
    font-weight: 500;
    font-size: .9rem;
    border-radius: 8px;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.3);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: .85rem;
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--clr-muted); }
.breadcrumb-item a { color: var(--clr-accent); }
.breadcrumb-item.active { color: var(--clr-muted); }

/* ===== ARTICLE (single post) ===== */
.article-cover {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    border: 1px solid var(--clr-border);
}
.article-title {
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.article-lead {
    color: var(--clr-muted);
    font-size: 1.05rem;
    border-left: 3px solid var(--clr-accent);
    padding-left: 1rem;
    margin-bottom: 2rem;
}
.article-body { color: var(--clr-text); }
.article-body h2 {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--clr-accent);
    margin: 2rem 0 .8rem;
}
.article-body p {
    color: #adb0c0;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
}
.article-body p strong { color: var(--clr-heading); }

/* ===== FOOTER ===== */
.site-footer {
    margin-top: auto;
    padding: 2.5rem 1rem;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-surface);
    color: var(--clr-muted);
    font-size: .85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .article-cover { height: 220px; }
    .article-title { font-size: 1.5rem; }
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
    .neon-banner__title{font-size:1.8rem}
    .neon-banner--compact .neon-banner__title{font-size:1.3rem}
    .card__thumb img{height:200px}
    .card__info{padding:1.2rem 1.4rem 1.4rem}
    .card__headline{font-size:1.1rem}
    .reader__cover{height:200px}
    .reader__title{font-size:1.35rem}
    .neon-nav__link{margin:0 .5rem;font-size:.78rem}
}
