/* ══════════════════════════════════════════════
   ZOUGLA — Main Stylesheet
   All sizing ~10% larger than previous version
══════════════════════════════════════════════ */

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

:root {
  --green:  #4ade80;
  --lime:   #a3e635;
  --dark:   #0a0f0a;
  --mid:    #111a11;
  --panel:  #141f14;
  --border: #1e3a1e;
  --text:   #d4f5d4;
  --muted:  #6b9c6b;
  --gold:   #ffd700;
  --red:    #e03333;
  /* Base font bumped up ~10% */
  --base: 22px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'VT323', monospace;
  font-size: var(--base);
  line-height: 1.55;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; z-index: 1000; opacity: 0.5;
}

/* ── STARS ── */
.stars { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.star {
  position: absolute; width: 2px; height: 2px; background: var(--green);
  animation: twinkle var(--d, 3s) var(--delay, 0s) infinite alternate ease-in-out;
}
@keyframes twinkle {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: 0.85; }
  100% { opacity: 0.1; transform: scale(1.6); }
}

/* ── SCAM TICKER ── */
.scam-ticker {
  position: relative; z-index: 20;
  background: var(--red); color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;   /* slightly bigger */
  padding: 10px 0;
  overflow: hidden; white-space: nowrap;
  letter-spacing: 0.5px;
}
.ticker-inner {
  display: inline-block;
  /* 52s = noticeably slower, fully readable */
  animation: ticker 52s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 2rem; overflow: hidden;
}

.landscape { position: absolute; bottom: 0; left: 0; right: 0; height: 240px; z-index: 1; }
.landscape svg { width: 100%; height: 100%; }

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
  background: linear-gradient(to top, rgba(74,222,128,0.09) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}

.hero-content { position: relative; z-index: 10; animation: fadeUp 1s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.server-badge {
  display: inline-block; background: var(--border); border: 1px solid var(--green);
  color: var(--green); font-family: 'VT323', monospace;
  font-size: 18px; letter-spacing: 3px; padding: 5px 20px;
  margin-bottom: 1.6rem; animation: fadeUp 1s 0.1s ease both;
}

h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(3.1rem, 11vw, 7.7rem);
  color: #fff;
  text-shadow:
    4px 4px 0 var(--green),
    8px 8px 0 rgba(74,222,128,0.25),
    0 0 90px rgba(74,222,128,0.4);
  letter-spacing: 0.05em; line-height: 1.15;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-tagline {
  font-family: 'VT323', monospace;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--lime);
  letter-spacing: 4px;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
  text-shadow: 0 0 20px rgba(163,230,53,0.4);
  animation: fadeUp 1s 0.28s ease both;
}

/* SCAM BADGES */
.scam-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.7rem; margin: 1.6rem 0;
  animation: fadeUp 1s 0.35s ease both;
}
.badge {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.5rem; letter-spacing: 0.5px;
  padding: 7px 12px; border: 2px solid;
  cursor: default; transition: transform 0.15s, box-shadow 0.15s;
}
.badge:hover { transform: scale(1.07); }
.badge-gold  { border-color: var(--gold);  color: var(--gold);  background: rgba(255,215,0,0.08); }
.badge-gold:hover  { box-shadow: 0 0 12px rgba(255,215,0,0.3); }
.badge-green { border-color: var(--green); color: var(--green); background: rgba(74,222,128,0.08); }
.badge-green:hover { box-shadow: 0 0 12px rgba(74,222,128,0.3); }
.badge-red   { border-color: var(--red);   color: var(--red);   background: rgba(224,51,51,0.08); }
.badge-red:hover   { box-shadow: 0 0 12px rgba(224,51,51,0.3); }

/* IP BOX */
.ip-box {
  margin-top: 1.6rem; display: inline-flex; align-items: center;
  animation: fadeUp 1s 0.5s ease both;
}
.ip-label {
  background: var(--green); color: var(--dark);
  font-family: 'Press Start 2P', monospace; font-size: 0.72rem;
  padding: 14px 16px; letter-spacing: 1px; user-select: none;
}
.ip-value {
  background: var(--panel); border: 2px solid var(--green); border-left: none;
  color: var(--lime); font-family: 'VT323', monospace; font-size: 1.8rem;
  padding: 9px 22px; letter-spacing: 2px; cursor: pointer;
  transition: background 0.15s, color 0.15s; position: relative;
}
.ip-value:hover { background: rgba(74,222,128,0.1); color: #fff; }
.ip-value::after {
  content: attr(data-copied); position: absolute; top: -30px; left: 50%;
  transform: translateX(-50%); font-size: 15px; color: var(--green);
  opacity: 0; transition: opacity 0.2s; white-space: nowrap; pointer-events: none;
  font-family: 'Press Start 2P', monospace;
}
.ip-value.copied::after { opacity: 1; }

/* BUTTONS */
.cta-row {
  margin-top: 1.7rem; display: flex; gap: 1.1rem;
  justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.65s ease both;
}
.btn {
  font-family: 'Press Start 2P', monospace; font-size: 0.66rem;
  letter-spacing: 1px; padding: 15px 24px; cursor: pointer; border: 2px solid;
  text-decoration: none; transition: transform 0.1s, box-shadow 0.1s; display: inline-block;
}
.btn:active { transform: translate(2px,2px); }
.btn-primary {
  background: var(--green); color: var(--dark); border-color: var(--green);
  box-shadow: 4px 4px 0 rgba(74,222,128,0.35);
}
.btn-primary:hover { box-shadow: 7px 7px 0 rgba(74,222,128,0.45); transform: translate(-2px,-2px); }
.btn-ghost {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-ghost:hover { background: rgba(74,222,128,0.09); transform: translate(-1px,-1px); }

/* ── STATUS BAR ── */
.status-bar {
  position: relative; z-index: 10;
  background: var(--panel);
  border-top: 2px solid var(--border); border-bottom: 2px solid var(--border);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap; font-size: 1.1rem; letter-spacing: 1px;
}
.status-item { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.status-val { color: var(--green); }
.status-val.clickable { cursor: pointer; text-decoration: underline dotted; }
.status-val.clickable:hover { color: #fff; }
.status-dot {
  width: 9px; height: 9px; background: var(--green);
  display: inline-block; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── PIXEL DIVIDER ── */
.pixel-divider {
  height: 4px;
  background: repeating-linear-gradient(
    90deg, var(--border) 0, var(--border) 8px,
    transparent 8px, transparent 14px
  );
  position: relative; z-index: 10;
}

/* ── SECTIONS ── */
.section {
  position: relative; z-index: 10;
  padding: 5.5rem 2rem; max-width: 1200px; margin: 0 auto;
}
.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1rem, 3vw, 1.45rem);
  color: var(--green); margin-bottom: 3.3rem;
  text-align: center; letter-spacing: 2px;
}
.section-title span { color: var(--muted); }

/* ── REVIEWS GRID ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.7rem;
}
.review-card {
  background: var(--panel); border: 2px solid var(--border);
  padding: 1.8rem; position: relative;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s;
  cursor: default;
}
.review-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(74,222,128,0.1);
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--green);
  transform: scaleY(0); transform-origin: top; transition: transform 0.28s;
}
.review-card:hover::before { transform: scaleY(1); }

.review-header { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1rem; }
.review-avatar {
  width: 56px; height: 56px; background: var(--border); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.reviewer-name {
  font-family: 'Press Start 2P', monospace; font-size: 0.56rem;
  color: #fff; letter-spacing: 0.5px; margin-bottom: 5px; line-height: 1.6;
}
.reviewer-title { font-size: 0.95rem; color: var(--muted); line-height: 1.4; }
.review-stars { color: var(--gold); font-size: 1.35rem; margin-bottom: 0.9rem; }
.review-text { color: var(--text); font-size: 1.25rem; line-height: 1.65; }
.review-verified {
  margin-top: 0.9rem; font-size: 0.88rem; color: var(--green);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}

/* ── NYT BOX ── */
.nyt-wrapper { max-width: 820px; margin: 0 auto; }
.nyt-box {
  background: #f9f6ef; border: 3px solid #1a1a1a;
  padding: 2.8rem; color: #1a1a1a; font-family: Georgia, serif; position: relative;
}
.nyt-logo {
  font-family: 'Times New Roman', Times, serif; font-size: 2.4rem; font-weight: 900;
  text-align: center; border-top: 3px solid #1a1a1a; border-bottom: 3px solid #1a1a1a;
  padding: 5px 0; margin-bottom: 1.3rem; letter-spacing: -1px;
}
.nyt-kicker {
  font-family: Arial, sans-serif; font-size: 0.75rem;
  letter-spacing: 3px; text-transform: uppercase; color: #666; margin-bottom: 0.6rem;
}
.nyt-headline {
  font-family: 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4.5vw, 2.4rem); font-weight: 900;
  line-height: 1.2; margin-bottom: 0.9rem; color: #1a1a1a;
}
.nyt-byline {
  font-family: Arial, sans-serif; font-size: 0.8rem; color: #444;
  border-top: 1px solid #ccc; padding-top: 0.7rem;
  margin-bottom: 1.3rem; letter-spacing: 0.5px;
}
.nyt-body { font-family: Georgia, serif; font-size: 1.15rem; line-height: 1.85; color: #222; }
.nyt-body p { margin-bottom: 1.1rem; }
.nyt-pull {
  border-left: 4px solid #1a1a1a; padding-left: 1.3rem;
  font-size: 1.4rem; font-style: italic; margin: 1.6rem 0;
  color: #1a1a1a; font-weight: bold;
}
.nyt-stars { color: #f0a500; font-size: 1.5rem; margin-bottom: 0.5rem; }
.nyt-disclaimer {
  font-family: Arial, sans-serif; font-size: 0.68rem; color: #999;
  margin-top: 1.1rem; border-top: 1px solid #ddd; padding-top: 0.7rem; line-height: 1.6;
}

/* ── HALL OF SHAME ── */
.shame-title {
  color: var(--red) !important;
  text-shadow: 2px 2px 0 rgba(255,68,68,0.25);
}
.shame-title span { color: #ff8888 !important; }

.shame-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  font-family: 'VT323', monospace;
}

.shame-card {
  border-color: #3a1010 !important;
  background: #110a0a !important;
  position: relative;
}
.shame-card:hover {
  border-color: var(--red) !important;
  box-shadow: 0 8px 32px rgba(255,68,68,0.12) !important;
}
.shame-card::before {
  background: var(--red) !important;
}

.shame-banner {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.45rem;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid var(--red);
  background: rgba(255,68,68,0.08);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 1rem;
  animation: shamePulse 2s infinite alternate;
}
@keyframes shamePulse {
  0%   { opacity: 1; }
  100% { opacity: 0.6; }
}

.shame-avatar {
  border-color: var(--red) !important;
  background: #1f0a0a !important;
}

/* ── DEDICATION ── */
.dedication {
  position: relative; z-index: 10;
  background: var(--mid); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border);
  padding: 4.5rem 2rem; text-align: center; overflow: hidden;
}
.dedication::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,222,128,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ded-label {
  font-family: 'Press Start 2P', monospace; font-size: 0.66rem;
  letter-spacing: 3px; color: var(--muted); margin-bottom: 1.1rem;
}
.ded-name {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.65rem, 6.5vw, 3.3rem); color: var(--green);
  text-shadow: 3px 3px 0 rgba(74,222,128,0.25), 0 0 70px rgba(74,222,128,0.3);
  margin-bottom: 1.1rem; line-height: 1.3;
}
.ded-text {
  color: var(--muted); font-size: 1.4rem;
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}
.ded-flame {
  font-size: 2.8rem; margin-bottom: 0.6rem;
  animation: flicker 1.5s infinite alternate;
}
@keyframes flicker { 0%{opacity:1;transform:scale(1)} 100%{opacity:0.7;transform:scale(1.06)} }

/* ── LEGAL DISCLAIMER ── */
.legal-disclaimer {
  position: relative; z-index: 10;
  background: #070c07;
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  max-width: 100%;
}
.legal-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.55rem; color: var(--muted);
  letter-spacing: 2px; margin-bottom: 1.2rem;
}
.legal-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem; color: #3d5c3d;
  line-height: 1.8; max-width: 960px; margin: 0 auto;
}
.legal-text strong { color: #5a7a5a; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 10;
  background: var(--mid); border-top: 2px solid var(--border);
  padding: 2.8rem; text-align: center;
}
.footer-logo {
  font-family: 'Press Start 2P', monospace; font-size: 1.32rem;
  color: var(--green); margin-bottom: 0.9rem;
  text-shadow: 2px 2px 0 rgba(74,222,128,0.25);
}
footer p { color: var(--muted); font-size: 1.1rem; letter-spacing: 1px; }
footer a { color: var(--green); text-decoration: none; }
footer a:hover { text-decoration: underline; color: #fff; }

/* ── POPUP ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.87);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; animation: popIn 0.4s 1.5s both;
}
@keyframes popIn { from{opacity:0} to{opacity:1} }
.popup {
  background: var(--panel); border: 3px solid var(--gold);
  padding: 2.8rem; max-width: 460px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 0 80px rgba(255,215,0,0.3);
  animation: popSlide 0.4s 1.5s both;
}
@keyframes popSlide { from{transform:scale(0.8);opacity:0} to{transform:scale(1);opacity:1} }
.popup-title {
  font-family: 'Press Start 2P', monospace; font-size: 1rem;
  color: var(--gold); margin-bottom: 1.1rem; line-height: 1.6;
}
.popup-text { color: var(--text); font-size: 1.3rem; margin-bottom: 1.6rem; line-height: 1.6; }
.popup-close {
  font-family: 'Press Start 2P', monospace; font-size: 0.6rem;
  padding: 14px 22px; background: var(--gold); color: #000;
  border: none; cursor: pointer; letter-spacing: 1px; transition: transform 0.1s, box-shadow 0.1s;
}
.popup-close:hover { transform: scale(1.06); box-shadow: 0 0 20px rgba(255,215,0,0.4); }
.popup-dismiss {
  display: block; margin-top: 1.1rem; font-size: 0.95rem;
  color: var(--muted); cursor: pointer; text-decoration: underline;
}
.popup-dismiss:hover { color: var(--text); }
#countdown { color: var(--red); font-family: 'Press Start 2P', monospace; font-size: 0.85rem; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .status-bar { gap: 1.4rem; }
  .ip-box { flex-direction: column; }
  .ip-value { border-left: 2px solid var(--green); border-top: none; }
  .nyt-box { padding: 1.6rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .legal-disclaimer { padding: 2rem 1.5rem; }
}
