/*
Theme Name: Xtamina
Theme URI: https://xtamina.com.br
Author: Xtamina
Description: Dark HUD gaming portal theme for the Xtamina blog.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: xtamina
*/

/* ====================================================
   XTAMINA BLOG — WORDPRESS THEME
   Dark HUD Gaming Portal | v1.0
   Palette: #0a0a0f · #1a0a2e · #6d00cc · #cc0022 · #e8e8f0
   ==================================================== */

:root {
  --bg-base:        #0a0a0f;
  --bg-surface:     #10101a;
  --bg-card:        #13121f;
  --bg-card-hover:  #1a1828;
  --border:         #2a1f45;
  --border-bright:  #3d2870;
  --purple-dark:    #2d0066;
  --purple-mid:     #6d00cc;
  --purple-bright:  #9b30ff;
  --purple-glow:    #b060ff;
  --red-dark:       #5c000f;
  --red-mid:        #cc0022;
  --red-bright:     #ff1a40;
  --red-glow:       #ff4060;
  --text-primary:   #e8e8f0;
  --text-secondary: #9898b0;
  --text-muted:     #55546a;
  --accent:         #9b30ff;
  --accent-alt:     #ff1a40;
  --scanline:       rgba(0, 0, 0, 0.35);
  --font-hud:       'Rajdhani', 'Orbitron', 'Share Tech Mono', monospace;
  --font-body:      'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--scanline) 2px, var(--scanline) 4px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
}

body::after {
  content: '';
  position: fixed;
  top: -30vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(109,0,204,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--purple-bright); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-bright); }
img { max-width: 100%; display: block; }

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(109,0,204,0.2), 0 2px 0 rgba(109,0,204,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }

.logo-hex {
  width: 40px;
  height: 40px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  flex-shrink: 0;
  animation: pulse-logo 3s ease-in-out infinite;
}
.logo-hex img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes pulse-logo {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,64,96,0.8)); }
  50%       { filter: drop-shadow(0 0 14px rgba(255,64,96,0.35)); }
}

.logo-text-group { display: flex; flex-direction: column; gap: 2px; }

.logo-text {
  font-family: 'Iceland', var(--font-hud), sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--purple-bright), var(--red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-tagline { font-family: 'Iceland', var(--font-hud), sans-serif; font-size: 9px; letter-spacing: 4px; color: var(--text-muted); text-transform: uppercase; line-height: 1; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; display: flex; align-items: center; }

.nav-link {
  font-family: var(--font-hud);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 10px;
  border: 1px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all .2s;
  height: 64px;
}

.nav-link::before { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--purple-bright); transition: all .2s; }
.nav-link:hover, .nav-item:focus-within .nav-link { color: var(--text-primary); background: rgba(109,0,204,0.08); }
.nav-link:hover::before, .nav-item:focus-within .nav-link::before { left: 0; right: 0; }

.nav-arrow { font-size: 7px; opacity: 0.45; transition: transform .2s, opacity .2s; line-height: 1; margin-top: 1px; }
.nav-item:hover .nav-arrow, .nav-item:focus-within .nav-arrow { transform: rotate(180deg); opacity: 1; color: var(--purple-bright); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(8, 8, 14, 0.97);
  border: 1px solid var(--border-bright);
  border-top: 2px solid var(--purple-mid);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7), 0 0 24px rgba(109,0,204,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
  backdrop-filter: blur(16px);
}

.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown-item {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 14px;
  font-family: var(--font-hud); font-weight: 500; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42,31,69,0.45);
  transition: color .15s, background .15s, padding-left .15s;
  white-space: nowrap;
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item::before { content: ''; width: 4px; height: 4px; background: var(--text-muted); clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%); flex-shrink: 0; transition: background .15s; }
.nav-dropdown-item:hover { color: var(--text-primary); background: rgba(109,0,204,0.1); padding-left: 20px; }
.nav-dropdown-item:hover::before { background: var(--purple-bright); }

.nav-dropdown-all { display: flex; align-items: center; gap: 9px; padding: 8px 14px; font-family: var(--font-hud); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-bright); border-bottom: 1px solid var(--border); background: rgba(109,0,204,0.06); transition: background .15s, color .15s; }
.nav-dropdown-all:hover { background: rgba(109,0,204,0.15); color: var(--purple-glow); }

.mobile-nav-section { margin-bottom: 4px; }
.mobile-nav-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 1px solid var(--border); cursor: pointer; padding: 12px 16px; font-family: var(--font-hud); font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); transition: all .2s; }
.mobile-nav-toggle:hover { color: var(--purple-bright); border-color: var(--border-bright); background: rgba(109,0,204,0.06); }
.mobile-nav-toggle-arrow { font-size: 9px; transition: transform .2s; opacity: 0.5; }
.mobile-nav-section.open .mobile-nav-toggle { color: var(--purple-bright); border-color: var(--purple-mid); background: rgba(109,0,204,0.08); }
.mobile-nav-section.open .mobile-nav-toggle-arrow { transform: rotate(180deg); opacity: 1; }
.mobile-nav-sub { display: none; background: rgba(0,0,0,0.25); border: 1px solid var(--border); border-top: none; }
.mobile-nav-section.open .mobile-nav-sub { display: block; }
.mobile-nav-sub-item { display: flex; align-items: center; gap: 8px; padding: 10px 22px; font-family: var(--font-hud); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid rgba(42,31,69,0.3); transition: all .15s; }
.mobile-nav-sub-item:last-child { border-bottom: none; }
.mobile-nav-sub-item::before { content: '›'; color: var(--text-muted); font-size: 14px; line-height: 1; }
.mobile-nav-sub-item:hover { color: var(--purple-bright); background: rgba(109,0,204,0.08); padding-left: 26px; }

.header-search { display: flex; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border); height: 36px; padding: 0 12px; transition: border-color .2s; }
.header-search:focus-within { border-color: var(--purple-mid); box-shadow: 0 0 12px rgba(109,0,204,0.3); }
.header-search input { background: none; border: none; outline: none; color: var(--text-primary); font-family: var(--font-body); font-size: 13px; width: 160px; }
.header-search input::placeholder { color: var(--text-muted); }
.search-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 0 0 0 8px; font-size: 14px; transition: color .2s; }
.search-btn:hover { color: var(--purple-bright); }

.menu-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 10px; cursor: pointer; font-family: var(--font-hud); font-size: 18px; line-height: 1; transition: all .2s; }
.menu-toggle:hover { border-color: var(--purple-mid); color: var(--purple-bright); }

.site-wrapper { max-width: 1280px; margin: 0 auto; padding: 32px 20px; display: grid; grid-template-columns: 1fr 200px; gap: 32px; position: relative; z-index: 1; }
#main-content { min-width: 0; }

.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.section-label { font-family: var(--font-hud); font-weight: 700; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--purple-bright); white-space: nowrap; }
.section-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-bright), transparent); }
.section-count { font-family: var(--font-hud); font-size: 10px; letter-spacing: 2px; color: var(--text-muted); }

.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }

.post-card { background: var(--bg-card); border: 1px solid var(--border); position: relative; overflow: hidden; transition: all .3s ease; display: flex; flex-direction: column; }
.post-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple-mid), var(--red-mid)); opacity: 0; transition: opacity .3s; }
.post-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(109,0,204,0.04), transparent 60%); pointer-events: none; }
.post-card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(109,0,204,0.15); }
.post-card:hover::before { opacity: 1; }

.post-card .hud-corner { position: absolute; width: 12px; height: 12px; z-index: 2; }
.post-card .hud-corner.tl { top: 0; left: 0; border-top: 2px solid var(--purple-mid); border-left: 2px solid var(--purple-mid); }
.post-card .hud-corner.tr { top: 0; right: 0; border-top: 2px solid var(--purple-mid); border-right: 2px solid var(--purple-mid); }
.post-card .hud-corner.bl { bottom: 0; left: 0; border-bottom: 2px solid var(--purple-mid); border-left: 2px solid var(--purple-mid); }
.post-card .hud-corner.br { bottom: 0; right: 0; border-bottom: 2px solid var(--purple-mid); border-right: 2px solid var(--purple-mid); }

.post-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-surface); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; filter: brightness(.85) saturate(1.1); }
.post-card:hover .post-thumb img { transform: scale(1.04); filter: brightness(.95) saturate(1.2); }
.post-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 50%); }

.post-type-badge { position: absolute; top: 10px; left: 10px; font-family: var(--font-hud); font-weight: 700; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; z-index: 2; }
.badge-text  { background: rgba(109,0,204,0.85); color: #fff; border: 1px solid var(--purple-mid); }
.badge-photo { background: rgba(204,0,34,0.85);  color: #fff; border: 1px solid var(--red-mid); }
.badge-video { background: rgba(0,0,0,0.85);     color: var(--purple-bright); border: 1px solid var(--purple-mid); }

.post-body { padding: 18px 20px 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }

.post-meta { display: flex; align-items: center; gap: 8px; overflow: hidden; flex-wrap: nowrap; }
.post-date { font-family: var(--font-hud); font-size: 11px; letter-spacing: 1.5px; color: var(--text-secondary); text-transform: uppercase; display: flex; align-items: center; flex-shrink: 0; gap: 4px; }
.post-date::before { content: ''; display: inline-block; width: 4px; height: 4px; background: var(--purple-mid); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }

.post-tags-row { display: flex; flex-wrap: nowrap; gap: 4px; overflow: hidden; flex: 1; min-width: 0; mask-image: linear-gradient(to right, black 80%, transparent 100%); -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%); }
.post-tag-pill { font-family: var(--font-hud); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red-bright); border: 1px solid rgba(204,0,34,0.4); padding: 1px 6px; background: rgba(204,0,34,0.08); transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.post-tag-pill:hover { background: rgba(204,0,34,0.18); color: var(--red-glow); border-color: var(--red-mid); }

.post-title { font-family: var(--font-hud); font-weight: 600; font-size: 17px; line-height: 1.3; letter-spacing: .5px; color: var(--text-primary); transition: color .2s; }
.post-title a { color: inherit; }
.post-card:hover .post-title a { color: var(--purple-bright); }

.post-excerpt { font-size: 13.5px; line-height: 1.65; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid rgba(42,31,69,0.5); margin-top: auto; }

.read-more { font-family: var(--font-hud); font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-bright); padding: 4px 10px; border: 1px solid var(--purple-mid); transition: all .2s; position: relative; overflow: hidden; }
.read-more::before { content: ''; position: absolute; inset: 0; background: var(--purple-mid); opacity: 0; transform: scaleX(0); transform-origin: left; transition: all .25s; }
.read-more:hover { color: #fff; box-shadow: 0 0 12px rgba(109,0,204,0.5); }
.read-more:hover::before { opacity: 1; transform: scaleX(1); }
.read-more span { position: relative; z-index: 1; }

.post-card.post-featured { grid-column: 1/-1; flex-direction: row; min-height: 280px; }
.post-card.post-featured .post-thumb { width: 480px; flex-shrink: 0; aspect-ratio: unset; }
.post-card.post-featured .post-body { padding: 28px 28px 24px; }
.post-card.post-featured .post-title { font-size: 24px; line-height: 1.25; }
.post-card.post-featured .post-excerpt { -webkit-line-clamp: 4; }
.post-card.post-featured .post-meta { flex-wrap: wrap; overflow: visible; }
.post-card.post-featured .post-tags-row { flex-wrap: wrap; overflow: visible; mask-image: none; -webkit-mask-image: none; }
.post-card { cursor: pointer; }

.post-full { background: var(--bg-card); border: 1px solid var(--border); padding: 0; position: relative; overflow: hidden; }
.post-full::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple-mid), var(--red-mid)); }
.post-full-thumb { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.post-full-title { font-family: var(--font-hud); font-weight: 700; font-size: 32px; line-height: 1.2; letter-spacing: .5px; color: var(--text-primary); margin-bottom: 16px; }

.post-full-body { font-size: 16px; line-height: 1.8; color: var(--text-secondary); }
.post-full-body h1, .post-full-body h2, .post-full-body h3 { font-family: var(--font-hud); font-weight: 700; color: var(--text-primary); margin: 24px 0 12px; letter-spacing: .5px; }
.post-full-body h2 { font-size: 22px; border-left: 3px solid var(--purple-mid); padding-left: 12px; }
.post-full-body h3 { font-size: 18px; color: var(--purple-bright); }
.post-full-body p { margin-bottom: 16px; }
.post-full-body blockquote { border-left: 2px solid var(--border-bright); padding: 12px 20px; background: rgba(109,0,204,0.05); color: var(--text-secondary); margin: 20px 0; font-style: italic; }
.post-full-body a { color: var(--red-bright); border-bottom: 1px solid rgba(204,0,34,0.35); transition: color .2s, border-color .2s; }
.post-full-body a:hover { color: var(--red-glow); border-color: var(--red-bright); }
.post-full-body ul, .post-full-body ol { padding-left: 24px; margin-bottom: 16px; }
.post-full-body li { margin-bottom: 6px; }
.post-full-body img { border: 1px solid var(--border); width: 100%; }
.post-full-body hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

.post-full-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag-item { font-family: var(--font-hud); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-bright); border: 1px solid var(--border-bright); padding: 4px 10px; transition: all .2s; background: rgba(109,0,204,0.06); }
.tag-item:hover { background: rgba(109,0,204,0.2); border-color: var(--purple-mid); color: var(--purple-glow); box-shadow: 0 0 10px rgba(109,0,204,0.3); }

.post-author-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border); background: rgba(109,0,204,0.04); }
.post-author-avatar { width: 40px; height: 40px; flex-shrink: 0; border: 1.5px solid var(--border-bright); box-shadow: 0 0 10px rgba(109,0,204,0.3); object-fit: cover; }
.post-author-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.post-author-name { font-family: var(--font-hud); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-primary); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
.post-author-name:hover { color: var(--purple-bright); }
.post-author-date { font-family: var(--font-hud); font-size: 11px; letter-spacing: 1.5px; color: var(--text-secondary); text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
.post-author-date::before { content: ''; display: inline-block; width: 4px; height: 4px; background: var(--red-mid); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); flex-shrink: 0; }
.post-author-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }

.sidebar-post-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-post-item { display: block; padding: 9px 0; border-bottom: 1px solid rgba(42,31,69,0.4); font-size: 12px; color: var(--text-secondary); text-decoration: none; transition: color .2s; line-height: 1.45; overflow: hidden; }
.sidebar-post-item .sidebar-recent-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--text-secondary, #9898b0); font-size: 12px; line-height: 1.45; }
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-item:hover { color: var(--purple-bright); }
.sidebar-post-item-popular { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(42,31,69,0.4); color: var(--text-secondary); text-decoration: none; transition: color .2s; }
.sidebar-post-item-popular:last-child { border-bottom: none; }
.sidebar-post-item-popular:hover { color: var(--purple-bright); }
.sidebar-thumb { width: 52px; height: 52px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); filter: brightness(.82) saturate(1.1); transition: filter .2s, border-color .2s; }
.sidebar-post-item-popular:hover .sidebar-thumb { filter: brightness(1) saturate(1.3); border-color: var(--border-bright); }
.sidebar-thumb-fallback { width: 52px; height: 52px; flex-shrink: 0; background: var(--bg-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.sidebar-thumb-icon { width: 14px; height: 14px; background: var(--border-bright); clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); }
.sidebar-post-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sidebar-post-title { font-size: 11.5px; line-height: 1.4; color: var(--text-secondary, #9898b0); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

#sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget { background: var(--bg-card); border: 1px solid var(--border); position: relative; overflow: hidden; }
.widget::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--purple-mid), transparent); }
.widget-header { padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; background: rgba(109,0,204,0.06); }
.widget-title { font-family: var(--font-hud); font-weight: 700; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--purple-bright); }
.widget-title-icon { width: 6px; height: 6px; background: var(--red-mid); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); flex-shrink: 0; animation: diamond-pulse 2s ease-in-out infinite; }
@keyframes diamond-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.widget-body { padding: 14px 16px; }

.comments-section { margin-top: 32px; background: var(--bg-card); border: 1px solid var(--border); padding: 20px 24px 28px; position: relative; }
.comments-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple-mid), transparent); }
#disqus_thread { color-scheme: dark; }

.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud-item { font-family: var(--font-hud); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--border); padding: 3px 8px; transition: all .2s; background: transparent; }
.tag-cloud-item:hover { color: var(--purple-bright); border-color: var(--purple-mid); background: rgba(109,0,204,0.1); }

.pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.page-btn { font-family: var(--font-hud); font-weight: 600; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--border); padding: 10px 20px; transition: all .25s; display: flex; align-items: center; gap: 8px; }
.page-btn:hover { color: var(--purple-bright); border-color: var(--purple-mid); background: rgba(109,0,204,0.08); box-shadow: 0 0 14px rgba(109,0,204,0.2); }
.page-btn .arrow { font-size: 16px; line-height: 1; }
.page-indicator { font-family: var(--font-hud); font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }

#site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); position: relative; z-index: 1; margin-top: 64px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 32px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo-text { font-family: var(--font-hud); font-weight: 700; font-size: 18px; letter-spacing: 4px; text-transform: uppercase; background: linear-gradient(90deg, var(--purple-bright), var(--red-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-family: var(--font-hud); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); transition: color .2s; }
.footer-nav a:hover { color: var(--purple-bright); }
.footer-divider { color: var(--border); font-size: 10px; }
.footer-copy { font-family: var(--font-hud); font-size: 9px; letter-spacing: 2px; color: var(--text-muted); text-align: center; text-transform: uppercase; }
.footer-hud-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--purple-mid), transparent); }

#mobile-nav { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); }
#mobile-nav.open { display: flex; }
.mobile-nav-panel { background: var(--bg-surface); border-right: 1px solid var(--border); width: 280px; height: 100%; padding: 24px; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-close { background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 10px; cursor: pointer; font-family: var(--font-hud); font-size: 16px; margin-bottom: 16px; align-self: flex-end; }
.mobile-close:hover { border-color: var(--red-mid); color: var(--red-bright); }

.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-bottom: 12px; }
.video-wrap iframe, .video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.hud-dots { display: flex; align-items: center; gap: 4px; }
.hud-dots span { width: 3px; height: 3px; background: var(--purple-mid); display: inline-block; }
.hud-dots span:nth-child(2) { background: var(--red-mid); opacity: 0.7; }
.hud-dots span:nth-child(3) { opacity: 0.4; }

.hud-progress { height: 2px; background: var(--border); position: relative; overflow: hidden; }
.hud-progress::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 60%; background: linear-gradient(90deg, var(--purple-mid), var(--red-mid)); animation: scan 3s ease-in-out infinite; }
@keyframes scan { 0% { left: -60%; } 100% { left: 110%; } }

/* AD LEADERBOARD */
.ad-leaderboard { background: var(--bg-surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 10px 20px; min-height: 110px; }
.ad-leaderboard .ad-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.ad-leaderboard .ad-label { font-family: var(--font-hud); font-size: 8px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; text-align: center; display: block; margin-bottom: 4px; }

@media (max-width: 1024px) {
  .site-wrapper { grid-template-columns: 1fr; }
  #sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .post-card.post-featured { flex-direction: column; }
  .post-card.post-featured .post-thumb { width: 100%; aspect-ratio: 16/9; }
}

@media (max-width: 680px) {
  .posts-grid { grid-template-columns: 1fr; }
  .post-card.post-featured { grid-column: auto; }
  .site-nav, .header-search { display: none; }
  .menu-toggle { display: flex; align-items: center; }
  .header-inner { height: 56px; }
  .logo-text { font-size: 18px; letter-spacing: 2px; }
  #sidebar { grid-template-columns: 1fr; }
  .footer-nav { gap: 16px; }
}

@media (max-width: 400px) {
  .logo-tagline { display: none; }
  .logo-text { font-size: 16px; }
}

.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 16px 16px 0; }
.alignright { float: right; margin: 0 0 16px 16px; }
