@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&family=Rajdhani:wght@600;700&display=swap');

:root {
  --orange: #F5A623;
  --orange-dim: #c4841b;
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #181818;
  --bg4: #1e1e1e;
  --border: #252525;
  --border2: #2e2e2e;
  --text: #e8e8e8;
  --text2: #999;
  --text3: #666;
  --green: #22c55e;
  --blue: #3b82f6;
  --red: #ef4444;
  --purple: #a855f7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== NAVBAR ===== */
.nb { background: #0d0d0d; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.nb-top { display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 54px; max-width: 1400px; margin: 0 auto; }
.logo { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; letter-spacing: 1px; color: #fff; cursor: pointer; }
.logo span { color: var(--orange); }
.nav { display: flex; height: 54px; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 15px; height: 54px;
  color: #aaa; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.15s; cursor: pointer; white-space: nowrap;
}
.nav-item:hover > a, .nav-item > a.active-nav { color: var(--orange); }
.nav-item:hover .mega { display: flex; }
.mega {
  display: none; position: absolute; top: 54px; left: 0;
  background: #141414; border: 1px solid var(--border2); border-top: 2px solid var(--orange);
  min-width: 200px; padding: 14px; gap: 24px; z-index: 300;
  flex-direction: column; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.mega.wide { flex-direction: row; min-width: 460px; }
.mega-col { min-width: 140px; }
.mega-col-title { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border2); }
.mega a { display: block; font-size: 13px; color: #888; padding: 6px 0; border-bottom: 1px solid #1e1e1e; transition: color 0.1s, padding-left 0.1s; }
.mega a:last-child { border-bottom: none; }
.mega a:hover { color: var(--orange); padding-left: 6px; }
.badge { display: inline-block; font-size: 9px; font-weight: 700; background: var(--orange); color: #111; border-radius: 3px; padding: 1px 5px; margin-left: 6px; letter-spacing: 0.5px; }
.badge-new { background: var(--green); }
.chevron { font-size: 9px; color: #555; margin-left: 2px; }
.nb-actions { display: flex; align-items: center; gap: 12px; }
.search-btn { background: var(--bg3); border: 1px solid var(--border2); color: var(--text2); padding: 7px 14px; border-radius: 6px; font-size: 12px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: border-color 0.2s; }
.search-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ===== TICKER ===== */
.ticker { background: var(--orange); overflow: hidden; height: 30px; display: flex; align-items: center; }
.ticker-label { background: #111; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 0 16px; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.ticker-track { display: flex; gap: 0; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 11px; font-weight: 700; color: #111; white-space: nowrap; padding: 0 40px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 32px; max-width: 1400px; margin: 0 auto; font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text3); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text3); }
.breadcrumb .current { color: var(--text2); }

/* ===== SECTION LABELS ===== */
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: 0.5px; color: #fff; margin-bottom: 6px; }
.section-sub { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ===== HERO ===== */
.hero { position: relative; background: var(--bg2); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
              linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0d0d0d 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(245,166,35,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,166,35,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner { max-width: 1400px; margin: 0 auto; padding: 64px 32px; position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.live-text { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(48px, 6vw, 80px); font-weight: 900; line-height: 0.95; letter-spacing: -1px; color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: 16px; color: var(--text2); line-height: 1.6; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: #111; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; padding: 12px 24px; border-radius: 6px; cursor: pointer; transition: background 0.2s, transform 0.1s; border: none; }
.btn-primary:hover { background: #ffb83f; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); font-size: 13px; font-weight: 600; padding: 12px 24px; border-radius: 6px; cursor: pointer; border: 1px solid var(--border2); transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-val { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: #fff; line-height: 1; }
.stat-val span { color: var(--orange); }
.stat-label { font-size: 11px; color: var(--text3); letter-spacing: 0.5px; margin-top: 4px; }
.hero-featured { display: flex; flex-direction: column; gap: 12px; }
.hero-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.hero-card:hover { border-color: var(--orange); transform: translateX(-3px); }
.hero-card-img { height: 130px; background: linear-gradient(135deg, #1a1a1a, #222); display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; overflow: hidden; }
.hero-card-img::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.hero-card-body { padding: 12px; }
.hero-card-cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.hero-card-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.hero-card-time { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ===== WRAPPER ===== */
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.view-all { font-size: 12px; color: var(--orange); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.view-all:hover { text-decoration: underline; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; gap: 18px; }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.card-thumb { height: 160px; background: var(--bg4); display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb-label { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--orange); color: #111; padding: 3px 8px; border-radius: 3px; }
.card-thumb-label.green { background: var(--green); }
.card-thumb-label.blue { background: var(--blue); }
.card-thumb-label.red { background: var(--red); }
.card-body { padding: 14px; }
.card-cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.card-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.45; margin-bottom: 8px; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--text3); }
.card-meta-dot { width: 3px; height: 3px; background: var(--text3); border-radius: 50%; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.page-hero-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 15px; color: var(--text2); margin-top: 10px; max-width: 600px; line-height: 1.6; }
.page-hero-meta { display: flex; gap: 20px; margin-top: 20px; align-items: center; }
.updated-tag { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ===== REDEEM CODES ===== */
.code-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 40px 0; }
.code-date-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.code-date-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.code-date-header .date-pill { background: var(--orange); color: #111; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.code-category { margin-bottom: 32px; }
.code-category-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text2); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.code-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; transition: border-color 0.2s; }
.code-item:hover { border-color: var(--border2); }
.code-value { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--orange); letter-spacing: 2px; }
.code-rewards { font-size: 12px; color: var(--text2); margin-top: 4px; }
.code-expires { font-size: 11px; color: var(--text3); margin-top: 3px; }
.copy-btn { background: var(--bg4); border: 1px solid var(--border2); color: var(--text2); font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.copy-btn:hover { background: var(--orange); border-color: var(--orange); color: #111; }
.copy-btn.copied { background: var(--green); border-color: var(--green); color: #111; }
.redeem-steps { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.redeem-steps h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.step-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.step-num { width: 22px; height: 22px; background: var(--orange); color: #111; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-text { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ===== SIDEBAR ===== */
.sidebar-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 18px; margin-bottom: 16px; }
.sidebar-card h3 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text2); transition: color 0.15s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--orange); }
.sidebar-link-icon { font-size: 16px; }

/* ===== GUIDES PAGE ===== */
.guide-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn { background: var(--bg3); border: 1px solid var(--border2); color: var(--text2); font-size: 12px; font-weight: 600; padding: 8px 18px; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: #111; }
.guide-featured { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; margin-bottom: 32px; }
.guide-big { border-radius: 10px; overflow: hidden; background: var(--bg3); border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s; }
.guide-big:hover { border-color: var(--orange); }
.guide-big-img { height: 260px; background: linear-gradient(135deg, #1a1500, #2a2000); display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; }
.guide-big-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-big-img::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.guide-big-body { padding: 18px; }
.guide-big-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.guide-big-body p { font-size: 13px; color: var(--text2); line-height: 1.5; }
.guide-side { display: flex; flex-direction: column; gap: 12px; }
.guide-list-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.2s; display: flex; }
.guide-list-card:hover { border-color: var(--orange); }
.guide-list-card-img { width: 80px; flex-shrink: 0; background: var(--bg4); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.guide-list-card-body { padding: 12px; flex: 1; }
.guide-list-card-body h4 { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ===== ESPORTS PAGE ===== */
.tournament-header { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.tourn-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.tourn-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.tourn-card.active { border-color: var(--orange); background: rgba(245,166,35,0.05); }
.tourn-icon { font-size: 36px; margin-bottom: 10px; }
.tourn-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
.tourn-status { font-size: 11px; font-weight: 600; margin-top: 6px; }
.tourn-status.live { color: var(--green); }
.tourn-status.upcoming { color: var(--orange); }
.tourn-status.completed { color: var(--text3); }
.esports-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.points-table { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.table-head { background: var(--bg4); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.table-head h3 { font-size: 14px; font-weight: 700; color: #fff; }
.table-head .live-badge { font-size: 9px; font-weight: 700; background: var(--green); color: #111; padding: 2px 8px; border-radius: 10px; letter-spacing: 1px; }
table { width: 100%; border-collapse: collapse; }
thead th { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); padding: 10px 18px; text-align: left; border-bottom: 1px solid var(--border); }
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:hover { background: rgba(245,166,35,0.03); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 12px 18px; font-size: 13px; color: var(--text2); }
.rank-num { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--text3); }
.rank-num.top3 { color: var(--orange); }
.team-name { font-weight: 600; color: var(--text); }
.team-tag { font-size: 11px; color: var(--text3); }
.pts-val { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--orange); }

/* ===== TOOLS PAGE ===== */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 24px; cursor: pointer; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.tool-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.tool-icon { font-size: 36px; margin-bottom: 14px; }
.tool-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tool-desc { font-size: 13px; color: var(--text2); line-height: 1.5; flex: 1; }
.tool-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--orange); margin-top: 16px; }

/* ===== SENSITIVITY TOOL ===== */
.sens-tool { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.sens-tool h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.sens-tool p { font-size: 14px; color: var(--text2); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%; background: var(--bg4); border: 1px solid var(--border2); color: var(--text);
  padding: 10px 14px; border-radius: 6px; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-group select option { background: var(--bg4); }
.sens-result { background: var(--bg4); border: 1px solid var(--border2); border-radius: 8px; padding: 20px; margin-top: 20px; display: none; }
.sens-result.show { display: block; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.result-item { text-align: center; }
.result-val { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--orange); }
.result-label { font-size: 11px; color: var(--text3); margin-top: 4px; }

/* ===== NEWS PAGE ===== */
.news-layout { display: grid; grid-template-columns: 1fr 280px; gap: 28px; padding: 40px 0; }
.news-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: transform 0.15s; }
.news-item:hover { transform: translateX(4px); }
.news-item:first-child { padding-top: 0; }
.news-thumb { width: 120px; height: 80px; flex-shrink: 0; background: var(--bg3); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 32px; border: 1px solid var(--border); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { flex: 1; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.news-title { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.news-excerpt { font-size: 13px; color: var(--text2); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-top: 8px; font-size: 11px; color: var(--text3); }

/* ===== ARTICLE / SINGLE POST ===== */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; padding: 36px 0; }
.article-header { margin-bottom: 24px; }
.article-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 14px; }
.article-header-meta { display: flex; gap: 16px; align-items: center; font-size: 12px; color: var(--text3); padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.article-thumb { height: 340px; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 28px; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body p { font-size: 15px; color: #ccc; line-height: 1.8; margin-bottom: 18px; }
.article-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin: 28px 0 12px; }
.article-body ul { padding-left: 20px; margin-bottom: 18px; }
.article-body li { font-size: 15px; color: #ccc; line-height: 1.7; margin-bottom: 6px; }
.article-body .highlight-box { background: rgba(245,166,35,0.06); border: 1px solid rgba(245,166,35,0.2); border-left: 3px solid var(--orange); border-radius: 6px; padding: 16px 18px; margin: 20px 0; }
.article-body .highlight-box p { margin-bottom: 0; color: var(--text2); }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 22px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.6; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn { width: 36px; height: 36px; border-radius: 6px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: border-color 0.2s; }
.social-btn:hover { border-color: var(--orange); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text3); padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-disclaimer { font-size: 11px; color: var(--text3); text-align: right; max-width: 400px; line-height: 1.5; }

/* ===== SEARCH OVERLAY ===== */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 500; align-items: flex-start; justify-content: center; padding-top: 80px; }
.search-overlay.open { display: flex; }
.search-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px; width: 600px; overflow: hidden; }
.search-input-wrap { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.search-icon { font-size: 18px; color: var(--text3); }
.search-input { flex: 1; background: transparent; border: none; color: var(--text); font-size: 16px; font-family: inherit; }
.search-input:focus { outline: none; }
.search-input::placeholder { color: var(--text3); }
.search-close { font-size: 20px; color: var(--text3); cursor: pointer; }
.search-quick { padding: 16px 20px; }
.search-quick-title { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.search-tag { display: inline-block; background: var(--bg3); border: 1px solid var(--border2); color: var(--text2); font-size: 12px; padding: 6px 14px; border-radius: 20px; margin: 0 6px 6px 0; cursor: pointer; transition: all 0.15s; }
.search-tag:hover { border-color: var(--orange); color: var(--orange); }

/* ===== WORDPRESS SPECIFIC ===== */
.wp-pagenavi { display: flex; gap: 8px; justify-content: center; margin: 32px 0; }
.wp-pagenavi a, .wp-pagenavi span { background: var(--bg3); border: 1px solid var(--border); color: var(--text2); padding: 8px 14px; border-radius: 6px; font-size: 13px; transition: all 0.2s; }
.wp-pagenavi a:hover, .wp-pagenavi span.current { background: var(--orange); border-color: var(--orange); color: #111; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.alignwide { margin-left: -32px; margin-right: -32px; }
.wp-block-image img { border-radius: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-featured { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nb-top { padding: 0 16px; }
  .nav { display: none; }
  .wrap { padding: 0 16px; }
  .cards-grid-4, .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .code-layout, .news-layout, .article-layout, .esports-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 16px; }
  .hero h1 { font-size: 48px; }
  .tools-grid { grid-template-columns: 1fr; }
  .guide-featured { grid-template-columns: 1fr; }
  .tournament-header { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
