/* ===================================
   Casino Blaze - Fire & Motion
   Black #0A0A0A / Fire Red #E63946 / Gold #FFB703
   =================================== */
:root {
    --cb-bg: #0A0A0A;
    --cb-bg2: #141414;
    --cb-bg3: #1E1E1E;
    --cb-red: #E63946;
    --cb-red-dim: rgba(230,57,70,0.12);
    --cb-red-glow: rgba(230,57,70,0.35);
    --cb-gold: #FFB703;
    --cb-gold-dim: rgba(255,183,3,0.1);
    --cb-text: #D4D4D4;
    --cb-text-dim: #888;
    --cb-border: rgba(230,57,70,0.1);
    --cb-radius: 4px;
    --cb-font: 'Saira', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--cb-font); background: var(--cb-bg); color: var(--cb-text); line-height: 1.6; }
a { color: var(--cb-gold); text-decoration: none; }
img, mip-img { max-width: 100%; display: block; }
.cb-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.cb-hdr { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.97); border-bottom: 2px solid var(--cb-red); backdrop-filter: blur(8px); }
.cb-hdr-row { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.cb-hdr-logo mip-img { height: 38px; }
.cb-hdr-nav { display: flex; gap: 22px; align-items: center; }
.cb-hdr-link { font-size: 13px; font-weight: 700; color: var(--cb-text-dim); letter-spacing: 0.06em; text-transform: uppercase; transition: color .2s; cursor: pointer; }
.cb-hdr-link:hover, .cb-hdr-active { color: var(--cb-gold); }
.cb-hdr-drop { position: relative; }
.cb-hdr-drop-list { display: none; position: absolute; top: 100%; left: 0; background: var(--cb-bg2); border: 1px solid var(--cb-border); border-radius: var(--cb-radius); min-width: 170px; z-index: 10; }
.cb-hdr-drop:hover .cb-hdr-drop-list { display: flex; flex-direction: column; }
.cb-hdr-drop-a { padding: 10px 14px; font-size: 13px; color: var(--cb-text-dim); border-bottom: 1px solid var(--cb-border); transition: all .2s; }
.cb-hdr-drop-a:hover { color: var(--cb-gold); background: var(--cb-red-dim); }
.cb-hdr-end { display: flex; align-items: center; gap: 12px; }
.cb-btn-fire { display: inline-block; padding: 10px 24px; background: linear-gradient(135deg, var(--cb-red), #C1121F); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; border-radius: var(--cb-radius); border: none; cursor: pointer; transition: all .2s; }
.cb-btn-fire:hover { box-shadow: 0 0 24px var(--cb-red-glow); transform: translateY(-1px); }
.cb-btn-lg { padding: 14px 40px; font-size: 15px; }
.cb-btn-dark { display: inline-block; padding: 10px 24px; border: 1px solid var(--cb-red); color: var(--cb-red); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; border-radius: var(--cb-radius); transition: all .2s; }
.cb-btn-dark:hover { background: var(--cb-red); color: #fff; }
.cb-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.cb-burger span { width: 22px; height: 2px; background: var(--cb-red); border-radius: 1px; }

/* ===== MOBILE ===== */
.cb-mob { position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: var(--cb-bg2); z-index: 200; transform: translateX(-100%); transition: transform .3s; border-right: 2px solid var(--cb-red); overflow-y: auto; }
.cb-mob-show { transform: translateX(0); }
.cb-mob-top { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--cb-border); }
.cb-mob-top mip-img { height: 30px; }
.cb-mob-x { background: none; border: none; color: var(--cb-red); font-size: 22px; cursor: pointer; }
.cb-mob-nav { display: flex; flex-direction: column; }
.cb-mob-link { padding: 13px 16px; font-size: 14px; font-weight: 600; color: var(--cb-text-dim); border-bottom: 1px solid var(--cb-border); }
.cb-mob-link:hover { color: var(--cb-gold); background: var(--cb-red-dim); }
.cb-mob-on { color: var(--cb-gold); }
.cb-mob-fire { background: linear-gradient(135deg, var(--cb-red), #C1121F); color: #fff; text-align: center; font-weight: 700; margin: 16px 12px 0; border-radius: var(--cb-radius); }

/* ===== HERO: Diagonal fire cut ===== */
.cb-hero { position: relative; overflow: hidden; padding: 80px 0 64px; background: var(--cb-bg); }
.cb-hero-diag { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(160deg, var(--cb-red-dim), rgba(255,183,3,0.06)); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
.cb-hero-diag::before { content: ''; position: absolute; left: 0; top: 8%; width: 3px; height: 84%; background: linear-gradient(to bottom, var(--cb-red), var(--cb-gold), var(--cb-red)); border-radius: 2px; }
.cb-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cb-hero-label { display: inline-block; padding: 5px 14px; background: var(--cb-red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; border-radius: var(--cb-radius); margin-bottom: 18px; }
.cb-hero-title { font-size: 48px; font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.cb-hero-sub { font-size: 16px; line-height: 1.6; color: var(--cb-text-dim); margin-bottom: 24px; }
.cb-hero-actions { display: flex; gap: 14px; margin-bottom: 28px; }
.cb-hero-stats { display: flex; gap: 28px; }
.cb-stat { text-align: center; }
.cb-stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--cb-gold); }
.cb-stat-lbl { font-size: 11px; color: var(--cb-text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.cb-hero-visual { display: flex; gap: 16px; align-items: center; }
.cb-hero-game { width: 200px; cursor: pointer; border-radius: var(--cb-radius); overflow: hidden; border: 2px solid var(--cb-red); transition: all .3s; }
.cb-hero-game:hover { box-shadow: 0 0 32px var(--cb-red-glow); transform: scale(1.03); }
.cb-hero-game-img { width: 200px; height: 200px; object-fit: cover; }
.cb-hero-game-info { display: flex; align-items: center; gap: 8px; padding: 10px; background: var(--cb-bg2); }
.cb-hero-game-hot { font-size: 11px; font-weight: 800; color: var(--cb-red); }
.cb-hero-game-name { font-size: 12px; font-weight: 700; color: #fff; flex: 1; }
.cb-hero-game-rtp { font-size: 12px; font-weight: 800; color: var(--cb-gold); }
.cb-hero-side { display: flex; flex-direction: column; gap: 12px; }
.cb-hero-sm { cursor: pointer; border-radius: var(--cb-radius); overflow: hidden; border: 1px solid var(--cb-border); transition: all .2s; }
.cb-hero-sm:hover { border-color: var(--cb-red); }
.cb-hero-sm-img { width: 160px; height: 100px; object-fit: cover; }
.cb-hero-sm span { display: block; padding: 6px 8px; background: var(--cb-bg3); font-size: 10px; font-weight: 700; color: var(--cb-text-dim); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== SECTION ===== */
.cb-sec-hd { margin-bottom: 36px; text-align: center; }
.cb-sec-t { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: 0.04em; }
.cb-sec-s { font-size: 14px; color: var(--cb-text-dim); margin-top: 6px; }

/* ===== GAMES: Scroll + Grid ===== */
.cb-games { padding: 56px 0; background: var(--cb-bg2); }
.cb-game-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 16px; }
.cb-game { flex-shrink: 0; width: 170px; cursor: pointer; border-radius: var(--cb-radius); overflow: hidden; border: 1px solid var(--cb-border); transition: all .2s; }
.cb-game:hover { border-color: var(--cb-red); box-shadow: 0 4px 20px var(--cb-red-glow); transform: translateY(-4px); }
.cb-game mip-img { width: 170px; height: 170px; object-fit: cover; }
.cb-game-info { display: flex; justify-content: space-between; padding: 8px 10px; background: var(--cb-bg3); }
.cb-game-name { font-size: 10px; font-weight: 700; color: var(--cb-text); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cb-game-rtp { font-size: 10px; font-weight: 800; color: var(--cb-gold); white-space: nowrap; }
.cb-game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 24px; }
.cb-game-sm { cursor: pointer; border-radius: var(--cb-radius); overflow: hidden; border: 1px solid var(--cb-border); transition: all .2s; }
.cb-game-sm:hover { border-color: var(--cb-gold); transform: scale(1.03); }
.cb-game-sm mip-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cb-game-sm span { display: block; padding: 6px; background: var(--cb-bg3); font-size: 11px; font-weight: 600; color: var(--cb-text-dim); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== PROMOTIONS ===== */
.cb-promo { padding: 56px 0; background: var(--cb-bg); }
.cb-promo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cb-promo-card { padding: 24px 20px; background: var(--cb-bg2); border: 1px solid var(--cb-border); border-top: 3px solid var(--cb-red); border-radius: var(--cb-radius); transition: all .3s; }
.cb-promo-card:hover { border-color: var(--cb-red); box-shadow: 0 0 28px var(--cb-red-dim); }
.cb-promo-ico { font-size: 34px; margin-bottom: 10px; }
.cb-promo-t { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cb-promo-d { font-size: 13px; line-height: 1.7; color: var(--cb-text-dim); }

/* ===== FAQ ===== */
.cb-faq { padding: 56px 0; background: var(--cb-bg2); }
.cb-faq-list { max-width: 860px; margin: 0 auto; }
.cb-faq-item { border-bottom: 1px solid var(--cb-border); }
.cb-faq-q { font-size: 17px; font-weight: 700; color: #fff; padding: 18px 0; cursor: pointer; }
.cb-faq-a { padding: 0 0 18px; display: none; }
.cb-faq-a p { font-size: 14px; line-height: 1.8; color: var(--cb-text-dim); }

/* ===== ARTICLES ===== */
.cb-arts { padding: 56px 0; background: var(--cb-bg); }
.cb-art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cb-art-card { background: var(--cb-bg2); border: 1px solid var(--cb-border); border-radius: var(--cb-radius); overflow: hidden; transition: border-color .2s; }
.cb-art-card:hover { border-color: var(--cb-red); }
.cb-art-link { display: block; }
.cb-art-thumb mip-img { width: 100%; height: 160px; object-fit: cover; }
.cb-art-body { padding: 14px; }
.cb-art-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 6px; }
.cb-art-meta { font-size: 11px; color: var(--cb-text-dim); }
.cb-art-more { text-align: center; margin-top: 28px; }

/* ===== CTA ===== */
.cb-cta { padding: 72px 0; background: linear-gradient(135deg, var(--cb-bg2), var(--cb-bg3)); text-align: center; border-top: 3px solid var(--cb-red); }
.cb-cta-inner { max-width: 580px; margin: 0 auto; }
.cb-cta-h { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: 0.06em; margin-bottom: 10px; }
.cb-cta-p { font-size: 15px; color: var(--cb-text-dim); margin-bottom: 24px; }

/* ===== FOOTER ===== */
.cb-ft { background: #050505; padding: 44px 0 20px; border-top: 1px solid var(--cb-border); }
.cb-ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--cb-border); }
.cb-ft-brand { max-width: 240px; }
.cb-ft-logo { height: 32px; }
.cb-ft-about { font-size: 12px; color: var(--cb-text-dim); margin-top: 10px; line-height: 1.6; }
.cb-ft-col { display: flex; flex-direction: column; gap: 6px; }
.cb-ft-h { font-size: 11px; font-weight: 800; color: var(--cb-red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.cb-ft-a { font-size: 12px; color: var(--cb-text-dim); transition: color .2s; }
.cb-ft-a:hover { color: var(--cb-gold); }
.cb-ft-bottom { padding-top: 16px; text-align: center; }
.cb-ft-copy { font-size: 11px; color: var(--cb-text-dim); }

/* ===== ARCHIVE ===== */
.cb-arch { padding: 40px 0; }
.cb-arch-h { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 28px; }
.cb-arch-list { display: flex; flex-direction: column; }
.cb-arch-item { border-bottom: 1px solid var(--cb-border); padding: 18px 0; }
.cb-arch-a { display: grid; grid-template-columns: 180px 1fr; gap: 16px; align-items: center; }
.cb-arch-img mip-img { width: 180px; height: 110px; object-fit: cover; border-radius: var(--cb-radius); }
.cb-arch-body { min-width: 0; }
.cb-arch-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.cb-arch-desc { font-size: 13px; color: var(--cb-text-dim); line-height: 1.5; margin-bottom: 6px; }
.cb-arch-meta { font-size: 11px; color: var(--cb-text-dim); }
.cb-pager { text-align: center; margin-top: 28px; }

/* ===== DETAIL ===== */
.cb-det { padding: 40px 0; }
.cb-det-narrow { max-width: 760px; }
.cb-det-head { margin-bottom: 24px; }
.cb-det-crumb { margin-bottom: 10px; font-size: 12px; }
.cb-det-crumb a { color: var(--cb-gold); font-weight: 600; }
.cb-det-title { font-size: 34px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.cb-det-meta { font-size: 12px; color: var(--cb-text-dim); display: flex; gap: 6px; }
.cb-det-dot { color: var(--cb-red); }
.cb-det-hero { margin-bottom: 24px; border-radius: var(--cb-radius); overflow: hidden; }
.cb-det-hero-img { width: 100%; max-height: 380px; object-fit: cover; }
.cb-det-body { font-size: 15px; line-height: 1.8; color: var(--cb-text); }
.cb-det-body p { margin-bottom: 18px; }
.cb-det-body h2, .cb-det-body h3 { color: #fff; margin: 24px 0 10px; }
.cb-det-tags { margin-top: 20px; display: flex; gap: 8px; }
.cb-det-tag { padding: 5px 12px; background: var(--cb-red-dim); border: 1px solid var(--cb-border); border-radius: var(--cb-radius); font-size: 11px; font-weight: 700; color: var(--cb-red); }
.cb-det-related { margin-top: 40px; padding-top: 28px; border-top: 3px solid var(--cb-red); }
.cb-det-rel-h { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cb-det-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cb-det-rel-card { display: block; background: var(--cb-bg2); border: 1px solid var(--cb-border); border-radius: var(--cb-radius); overflow: hidden; transition: border-color .2s; }
.cb-det-rel-card:hover { border-color: var(--cb-red); }
.cb-det-rel-img mip-img { width: 100%; height: 120px; object-fit: cover; }
.cb-det-rel-body { padding: 12px; }
.cb-det-rel-cat { font-size: 9px; color: var(--cb-red); font-weight: 800; letter-spacing: 0.1em; }
.cb-det-rel-title { font-size: 13px; font-weight: 700; color: #fff; margin-top: 4px; line-height: 1.3; }

/* ===== 404 ===== */
.cb-404 { padding: 100px 0; text-align: center; }
.cb-404-inner { max-width: 460px; margin: 0 auto; }
.cb-404-code { font-size: 110px; font-weight: 800; color: var(--cb-red); line-height: 1; }
.cb-404-h { font-size: 26px; font-weight: 800; color: #fff; margin: 12px 0 8px; }
.cb-404-p { font-size: 14px; color: var(--cb-text-dim); margin-bottom: 20px; }

.cb-body { font-family: var(--cb-font); background: var(--cb-bg); color: var(--cb-text); line-height: 1.6; }
.cb-main { min-height: 60vh; }
.cb-hero-content { max-width: 520px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cb-hero-inner { grid-template-columns: 1fr; }
    .cb-hero-diag { display: none; }
    .cb-hero-title { font-size: 36px; }
    .cb-promo-row { grid-template-columns: repeat(2, 1fr); }
    .cb-game-grid { grid-template-columns: repeat(3, 1fr); }
    .cb-ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .cb-hdr-nav { display: none; }
    .cb-burger { display: flex; }
    .cb-hero { padding: 48px 0 40px; }
    .cb-hero-title { font-size: 28px; }
    .cb-hero-actions { flex-direction: column; }
    .cb-hero-visual { flex-direction: column; }
    .cb-hero-game { width: 100%; }
    .cb-hero-game-img { width: 100%; height: auto; }
    .cb-hero-side { flex-direction: row; }
    .cb-hero-sm-img { width: 120px; height: 80px; }
    .cb-promo-row { grid-template-columns: 1fr; }
    .cb-game-grid { grid-template-columns: repeat(2, 1fr); }
    .cb-art-grid { grid-template-columns: 1fr; }
    .cb-cta-h { font-size: 24px; }
    .cb-ft-grid { grid-template-columns: 1fr; }
    .cb-arch-a { grid-template-columns: 1fr; }
    .cb-det-title { font-size: 24px; }
    .cb-det-rel-grid { grid-template-columns: 1fr; }
}

/* ===== FEATURED ARTICLES ===== */
.cb-featured { padding: 56px 0; background: var(--cb-bg2); }
.cb-featured .cb-container { max-width: 1200px; }
.cb-featured .cb-sec-hd { text-align: center; margin-bottom: 60px; }
.cb-featured .cb-sec-t { font-size: 32px; font-weight: 700; color: #fff; letter-spacing: 0.06em; margin-bottom: 16px; }
.cb-featured .cb-sec-s { font-size: 15px; color: var(--cb-text-dim); margin-top: 8px; }
.cb-featured-list { display: grid; gap: 32px; margin-bottom: 48px; }
.cb-featured-item { background: rgba(0, 0, 0, 0.3); border: 1px solid var(--cb-red); border-radius: 4px; padding: 32px; transition: all 0.3s ease; }
.cb-featured-item:hover { background: rgba(230, 57, 70, 0.1); border-color: var(--cb-red); box-shadow: 0 0 20px rgba(230, 57, 70, 0.2); }
.cb-featured-header { margin-bottom: 24px; }
.cb-featured-title { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cb-featured-meta { display: flex; align-items: center; gap: 8px; color: var(--cb-text-dim); font-size: 0.95rem; }
.cb-featured-date { color: var(--cb-red); }
.cb-featured-dot { color: var(--cb-red); }
.cb-featured-views { color: var(--cb-red); }
.cb-featured-content { color: #ccc; line-height: 1.7; font-size: 1.05rem; }
.cb-featured-more { text-align: center; }
.cb-featured-more a { display: inline-block; background: transparent; color: var(--cb-red); border: 2px solid var(--cb-red); padding: 12px 32px; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.cb-featured-more a:hover { background: var(--cb-red); color: var(--cb-bg); transform: translateY(-2px); }