@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
  --bg: #07070b;
  --panel: #13101a;
  --accent1: #00f6a2;
  --accent2: #ff3bcf;
  --accent3: #ffd54a;
  --text: #f6f2ff;
  --muted: #b9b3cf;
  --danger: #ff3535;
  --ok: #32ff72;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 20% 10%, rgba(255, 59, 207, 0.2), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(0, 246, 162, 0.18), transparent 60%),
    radial-gradient(900px 460px at 50% 90%, rgba(255, 213, 74, 0.15), transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  opacity: 0.3;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.top-marquee {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 59, 207, 0.2), rgba(0, 246, 162, 0.18), rgba(255, 213, 74, 0.16));
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.marquee-inner {
  white-space: nowrap;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 0 10px rgba(255, 59, 207, 0.3);
}

.marquee-inner span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 16s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.site-header {
  padding: 18px 14px 10px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 59, 207, 0.9), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 246, 162, 0.8), transparent 55%),
    linear-gradient(135deg, rgba(255, 213, 74, 0.55), rgba(255, 59, 207, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 18px rgba(255, 59, 207, 0.3), 0 0 18px rgba(0, 246, 162, 0.25);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(10, 10, 10, 0.7);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 4px;
}

h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  margin: 0;
  letter-spacing: 0.6px;
}

h1 {
  font-size: clamp(22px, 3.4vw, 38px);
}

h2 {
  font-size: clamp(20px, 2.6vw, 30px);
}

.subline {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.accent { color: var(--accent2); }
.accent-3 { color: var(--accent3); }

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.badge.ok { border-color: rgba(50, 255, 114, 0.35); }
.badge.warn { border-color: rgba(255, 213, 74, 0.35); }
.badge.danger { border-color: rgba(255, 53, 53, 0.35); }

.nav {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.nav a:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.15);
}

.nav a.vip {
  border-color: rgba(255, 59, 207, 0.5);
  box-shadow: 0 0 18px rgba(255, 59, 207, 0.18);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto 26px;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.18);
}

.panel-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 246, 162, 0.35);
  color: rgba(0, 246, 162, 0.95);
  background: rgba(0, 246, 162, 0.08);
  text-shadow: 0 0 10px rgba(0, 246, 162, 0.25);
}

.map-area { padding: 12px; }

.map {
  height: 440px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 380px at 60% 40%, rgba(0, 246, 162, 0.08), transparent 60%),
    radial-gradient(800px 360px at 30% 60%, rgba(255, 59, 207, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.15));
}

.map::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    repeating-linear-gradient(22deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 2px, transparent 2px, transparent 34px),
    repeating-linear-gradient(-17deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 2px, transparent 2px, transparent 42px);
  opacity: 0.55;
  filter: blur(0.2px);
  pointer-events: none;
}

.map-label {
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 10px;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
}

.map-label small {
  display: block;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 2px;
  color: var(--muted);
}

.you-are-here {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent3);
  box-shadow: 0 0 0 8px rgba(255, 213, 74, 0.12), 0 0 22px rgba(255, 213, 74, 0.35);
  z-index: 5;
}

.you-are-here span {
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 213, 74, 0.35);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 213, 74, 0.95);
  text-shadow: 0 0 10px rgba(255, 213, 74, 0.25);
}

.single {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 59, 207, 0.85), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 246, 162, 0.75), transparent 55%),
    rgba(10, 10, 20, 0.55);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0a0810;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 18px rgba(255, 59, 207, 0.16), 0 0 18px rgba(0, 246, 162, 0.12);
  z-index: 4;
  user-select: none;
  cursor: not-allowed;
  transition: filter 0.12s ease, transform 0.12s ease;
}

.single:hover {
  filter: brightness(1.2);
  transform: scale(1.04);
}

.single .heart {
  font-size: 18px;
  transform: translateY(-1px);
  opacity: 0.85;
}

.bubble {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -100%);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 59, 207, 0.35);
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 59, 207, 0.95);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.single.horny .bubble { opacity: 1; }

.under-map {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 640px) {
  .under-map { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.feed {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
  max-height: 90px;
  overflow: auto;
}

.feed strong { color: var(--text); }

.btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.btn.primary {
  border-color: rgba(0, 246, 162, 0.45);
  box-shadow: 0 0 18px rgba(0, 246, 162, 0.15);
}

.btn.danger {
  border-color: rgba(255, 53, 53, 0.45);
  box-shadow: 0 0 18px rgba(255, 53, 53, 0.12);
}

.btn.alt {
  border-color: rgba(255, 59, 207, 0.45);
  box-shadow: 0 0 18px rgba(255, 59, 207, 0.12);
}

.ads {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ad {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.ad:hover { filter: brightness(1.15); }

.ad .ad-inner {
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ad .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 18px rgba(255, 59, 207, 0.1);
  flex: 0 0 auto;
}

.ad .headline {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.12;
}

.ad .copy {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.25;
}

.ad .cta {
  margin-top: 10px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 59, 207, 0.35);
  background: rgba(255, 59, 207, 0.1);
  color: rgba(255, 59, 207, 0.95);
  text-shadow: 0 0 10px rgba(255, 59, 207, 0.18);
}

.ad.strip::before {
  content: "ADVERTISEMENT";
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 10px;
  letter-spacing: 0.6px;
  opacity: 0.7;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.bottom-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

@media (max-width: 900px) {
  .bottom-strip { grid-template-columns: 1fr; }
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  z-index: 999;
  padding: 14px;
}

.modal {
  width: min(620px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.modal-head {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.modal-head strong {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.xbtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 700;
}

.modal-body {
  padding: 12px;
}

.modal-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
  text-shadow: 0 0 12px rgba(255, 59, 207, 0.18);
}

.modal-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.3;
  font-size: 13px;
}

.fake-progress {
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.fake-progress > div {
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, rgba(0, 246, 162, 0.7), rgba(255, 59, 207, 0.65), rgba(255, 213, 74, 0.55));
  animation: wiggle 1.2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: rise 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.hero {
  padding: 18px;
}

.hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.stack {
  display: grid;
  gap: 10px;
}

.quote {
  border-left: 3px solid rgba(255, 59, 207, 0.6);
  padding-left: 10px;
  color: var(--muted);
  font-size: 14px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent1);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.field {
  display: grid;
  gap: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 6px;
  text-align: left;
}

.stat {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  font-size: 18px;
  color: var(--accent3);
}

.notice {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.wheel {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  background: conic-gradient(
    rgba(255, 59, 207, 0.55),
    rgba(0, 246, 162, 0.55),
    rgba(255, 213, 74, 0.6),
    rgba(255, 59, 207, 0.55)
  );
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
  position: relative;
}

.wheel::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid var(--accent3);
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, rgba(0, 246, 162, 0.8), rgba(255, 59, 207, 0.7));
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.small {
  font-size: 12px;
  color: var(--muted);
}
