/* GamerZone ID — Dark Neon Cyan Gaming Blog */
:root {
  --bg: #0d0d1a;
  --bg2: #111125;
  --bg3: #16162e;
  --accent: #00e5ff;
  --accent2: #7c3aed;
  --text: #e0e0f0;
  --text-muted: #8888aa;
  --border: #1e1e3a;
  --card: #13132a;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  z-index: 1000;
}
.demo-bar a { color: #000; font-weight: 800; text-decoration: underline; }
.demo-bar a:hover { opacity: .75; }

/* ── LINKS ── */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* ── NAV ── */
header {
  background: var(--bg2);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 900;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 0 16px var(--accent);
}
.logo span { color: var(--text); }

/* checkbox-hack mobile nav */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: .25s;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  letter-spacing: .02em;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--accent);
  color: #000;
  text-decoration: none;
}

@media (max-width: 680px) {
  .nav-label { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 2px solid var(--accent);
    padding: 12px 16px 20px;
  }
  #nav-toggle:checked ~ nav { display: block; }
  nav ul { flex-direction: column; align-items: flex-start; gap: 2px; }
  nav ul li { width: 100%; }
  nav ul li a { display: block; width: 100%; }
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 16px 60px;
  text-align: center;
  background: linear-gradient(160deg, #0d0d1a 40%, #0a1a2e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,229,255,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(124,58,237,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(0,229,255,.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent);
}
.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: .2s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(0,229,255,.4);
}
.btn-primary:hover {
  background: #33ecff;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0,229,255,.6);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: rgba(0,229,255,.1);
  text-decoration: none;
}

/* ── SECTION ── */
section { padding: 56px 0; }
.section-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-subtitle { color: var(--text-muted); margin-bottom: 36px; font-size: .95rem; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-title {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-excerpt { color: var(--text-muted); font-size: .88rem; flex: 1; margin-bottom: 16px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.card-meta .dot { color: var(--border); }

/* thumbnail SVGs */
.thumb-review { background: linear-gradient(135deg, #0a1a2e, #0d2240); }
.thumb-tips { background: linear-gradient(135deg, #1a0a2e, #2a0a40); }
.thumb-esports { background: linear-gradient(135deg, #0a2a1a, #0a3020); }
.thumb-mobile { background: linear-gradient(135deg, #2a1a0a, #3a2010); }
.thumb-pc { background: linear-gradient(135deg, #1a1a0a, #2a2a10); }
.thumb-console { background: linear-gradient(135deg, #0a1a2a, #102030); }

/* ── FEATURED ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .featured-grid { grid-template-columns: 2fr 1fr; }
}
.featured-main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.featured-main:hover { border-color: var(--accent); }
.featured-main .thumb {
  width: 100%;
  aspect-ratio: 16/8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1040, #0a2040);
  position: relative;
  overflow: hidden;
}
.featured-main .info { padding: 24px; }
.featured-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.featured-main h2 { font-size: 1.45rem; color: #fff; margin-bottom: 10px; }
.featured-main p { color: var(--text-muted); font-size: .93rem; margin-bottom: 16px; }

.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  transition: border-color .2s;
}
.sidebar-post:hover { border-color: var(--accent); }
.sp-thumb {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-info { flex: 1; min-width: 0; }
.sp-cat { font-size: .7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.sp-title { font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.3; margin: 4px 0 6px; }
.sp-date { font-size: .75rem; color: var(--text-muted); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--accent);
  color: #000;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item { font-size: .82rem; font-weight: 700; letter-spacing: .04em; }
.ticker-item::before { content: '▶ '; }

/* ── ARTICLE LIST ── */
.article-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  cursor: pointer;
  transition: .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,229,255,.06);
}

/* ── ARTICLE DETAIL ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .article-layout { grid-template-columns: 1fr 320px; }
}
.article-header { margin-bottom: 32px; }
.article-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.article-cat-tag {
  background: rgba(0,229,255,.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.article-thumb {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: 10px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1040, #0a2040);
  overflow: hidden;
}
.article-content h2 { font-size: 1.3rem; color: #fff; margin: 32px 0 14px; }
.article-content h3 { font-size: 1.1rem; color: var(--accent); margin: 24px 0 12px; }
.article-content p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.75; }
.article-content ul, .article-content ol {
  margin: 0 0 18px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: rgba(0,229,255,.05);
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
  color: var(--text);
  font-style: italic;
}
.rating-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
}
.rating-box h3 { color: #fff; margin-bottom: 16px; font-size: 1.1rem; }
.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
}
.rating-label { width: 100px; color: var(--text-muted); flex-shrink: 0; }
.rating-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--accent); box-shadow: 0 0 8px var(--accent); border-radius: 3px; }
.rating-score { width: 36px; text-align: right; font-weight: 700; color: var(--accent); font-size: .85rem; }

/* sidebar widget */
.widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 24px;
}
.widget h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.widget-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.widget-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.wp-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.wp-title { font-size: .85rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.wp-title:hover { color: var(--accent); }
.wp-meta { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: .2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ── ABOUT ── */
.about-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 60px 16px;
  text-align: center;
}
.avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px rgba(0,229,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1a2e, #0a0a1a);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
}
.stat-card .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 14px var(--accent);
  line-height: 1;
}
.stat-card .lbl { font-size: .8rem; color: var(--text-muted); margin-top: 6px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  transition: border-color .2s;
}
.team-card:hover { border-color: var(--accent); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #000;
}
.team-card h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: .8rem; font-weight: 600; }
.team-card p { color: var(--text-muted); font-size: .83rem; margin-top: 10px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.ci-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(0,229,255,.1);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-text h4 { color: #fff; font-size: .95rem; margin-bottom: 2px; }
.ci-text p { color: var(--text-muted); font-size: .88rem; }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: .2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ── SUBSCRIBE BANNER ── */
.subscribe-band {
  background: linear-gradient(120deg, #0a1040 0%, #0a2040 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.subscribe-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.subscribe-band h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.subscribe-band p { color: var(--text-muted); margin-bottom: 24px; }
.subscribe-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.subscribe-form input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 16px;
  color: var(--text);
  font-size: .95rem;
  font-family: var(--font);
  outline: none;
}
.subscribe-form input:focus { border-color: var(--accent); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 2px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--accent);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── BADGE / LABEL ── */
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-new { background: var(--accent); color: #000; }
.badge-hot { background: #ff3a3a; color: #fff; }
.badge-review { background: var(--accent2); color: #fff; }

/* ── MISC ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .4; }

/* pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: .2s;
}
.page-btn:hover, .page-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* back to top hint */
.back-top { display: block; text-align: center; margin-top: 12px; font-size: .8rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
