/* =========================
   JBGODS Shared Image System
========================= */

:root {
  --jb-black: #050505;
  --jb-red: #ff2a2a;
  --jb-red-soft: rgba(255,0,0,.18);
  --jb-red-glow: rgba(255,0,0,.16);
  --jb-text: #f5f5f5;
}

/* Shared image shell */

.seo-hero-image-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--jb-black);
  border: 1px solid var(--jb-red-soft);
  box-shadow:
    0 0 40px var(--jb-red-glow),
    inset 0 0 40px rgba(255,0,0,.04);
}

/* Red laser layer */

.seo-hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(255,0,0,.08) 40%,
      transparent 100%
    );
  z-index: 1;
}

/* Image */

.seo-hero-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Optional compact version */

.seo-hero-image.compact {
  max-height: 420px;
  object-fit: cover;
}

/* Mobile */

@media (max-width: 768px) {

  .seo-hero-image-wrap {
    margin: 16px auto;
    border-radius: 18px;
  }

}

/* ORIGINAL */

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

:root {
  --bg-1: #030303;
  --bg-2: #0a0a0a;
  --card: rgba(16, 16, 16, 0.96);
  --card-2: rgba(10, 10, 10, 0.98);
  --line: rgba(255, 255, 255, 0.08);
  --line-green: rgba(0, 255, 128, 0.22);
  --green: #00ff80;
  --green-soft: #9bffcb;
  --red: #ff4d4d;
  --gold: #d4af37;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --muted-2: #8f8f8f;
  --shadow-green: 0 0 24px rgba(0, 255, 128, 0.08);
  --shadow-red: 0 0 20px rgba(255, 0, 0, 0.06);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --max: 1420px;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0,255,128,0.07), transparent 24%),
    radial-gradient(circle at top right, rgba(255,0,0,0.06), transparent 20%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  flex-wrap: wrap;
}

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

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid rgba(0,255,128,0.18);
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.brand-text-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #f3f3f3;
  transition: 0.18s ease;
}

.header-link:hover,
.header-link.active {
  color: var(--green-soft);
  border-color: rgba(0,255,128,0.24);
  box-shadow: var(--shadow-green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(19,19,19,0.98), rgba(7,7,7,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-green), var(--shadow-red), inset 0 0 0 1px rgba(255,255,255,0.02);
  margin-bottom: 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,255,128,0.09), transparent 68%);
  pointer-events: none;
}

.eyebrow,
.most-visited-kicker,
.checkin-live,
.tracker-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.28);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  max-width: 980px;
}

.hero p,
.card-subtitle,
.detail-value,
.empty-state,
.loading,
.tracker-help {
  color: var(--muted);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #efefef;
  font-size: 14px;
}

.section {
  margin-top: 18px;
}

.section-title {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.stats-grid,
.grid,
.detail-grid,
.cta-grid,
.checkin-grid,
.tracker-grid {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cta-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checkin-grid,
.tracker-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.stat-card,
.detail-card,
.cta-card,
.status-box,
.most-visited-shell,
.most-visited-card,
.checkin-shell,
.checkin-panel,
.tracker-panel {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.card:hover,
.cta-card:hover,
.most-visited-card:hover {
  border-color: var(--line-green);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
  transition: 0.18s ease;
}

.stat-label,
.detail-title,
.meta {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
}

.stat-label,
.detail-title {
  color: var(--muted-2);
  margin-bottom: 10px;
}

.stat-value {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
}

.card-title,
.cta-title {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.meta {
  margin-top: 14px;
  color: var(--green-soft);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.badge.green {
  color: var(--green-soft);
  border-color: rgba(0,255,128,0.22);
  box-shadow: var(--shadow-green);
}

.badge.red {
  color: #ff9e9e;
  border-color: rgba(255,0,0,0.22);
}

.badge.gold {
  color: #f0d98a;
  border-color: rgba(212,175,55,0.2);
}

.badge.gray {
  color: #d0d0d0;
}

.status-box {
  margin-top: 18px;
}

.status-box.error {
  border-color: rgba(255,0,0,0.18);
  color: #ffb2b2;
}

.status-box.success {
  border-color: rgba(0,255,128,0.16);
  color: #cbffdf;
}

.hidden {
  display: none !important;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.action-pill,
.most-visited-button,
.checkin-button,
.tracker-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, #101010, #060606);
  border: 1px solid rgba(212,175,55,0.25);
  color: #f0d98a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 48px;
}

.action-pill {
  min-height: 42px;
  border-color: rgba(255,255,255,0.10);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.tracker-chip {
  min-height: 42px;
  border-color: rgba(255,255,255,0.10);
  color: #fff;
  background: rgba(255,255,255,0.04);
  transition: 0.18s ease;
  padding: 10px 12px;
}

.tracker-chip:hover,
.action-pill:hover {
  border-color: rgba(0,255,128,0.24);
  color: var(--green-soft);
  box-shadow: var(--shadow-green);
}

.tracker-chip.active {
  border-color: rgba(0,255,128,0.30);
  color: var(--green-soft);
  background: rgba(0,255,128,0.08);
  box-shadow: var(--shadow-green);
}

.most-visited-shell,
.checkin-shell,
.tracker-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(12,12,12,0.98), rgba(6,6,6,0.98));
}

.most-visited-shell::before,
.checkin-shell::before,
.tracker-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,0,0,0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(212,175,55,0.08), transparent 28%);
  pointer-events: none;
}

.most-visited-inner,
.checkin-inner,
.tracker-inner {
  position: relative;
  z-index: 1;
}

.most-visited-heading {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: #fff;
}

.most-visited-subtitle {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 920px;
}

.most-visited-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}

.most-visited-main {
  flex: 1;
  min-width: 240px;
}

.most-visited-rank {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff9d9d;
  margin-bottom: 10px;
}

.most-visited-name {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
}

.most-visited-meta {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.most-visited-count {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,0,0,0.12), rgba(212,175,55,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.most-visited-count-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb3b3;
  margin-bottom: 8px;
}

.most-visited-count-value {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.most-visited-count-sub {
  font-size: 13px;
  color: var(--muted);
}

.checkin-mini {
  display: grid;
  gap: 10px;
}

.checkin-label,
.tracker-row-title {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.checkin-input,
.checkin-select,
.checkin-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  outline: none;
}

.checkin-textarea {
  min-height: 110px;
  resize: vertical;
}

.checkin-input:focus,
.checkin-select:focus,
.checkin-textarea:focus {
  border-color: rgba(0,255,128,0.28);
  box-shadow: 0 0 0 3px rgba(0,255,128,0.08);
}

.checkin-button {
  border-color: rgba(0,255,128,0.2);
  color: var(--green-soft);
}

.checkin-button.secondary {
  border-color: rgba(255,255,255,0.10);
  color: #f0f0f0;
}

.checkin-actions,
.tracker-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tracker-row {
  margin-top: 18px;
}

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

.tracker-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--green-soft);
  border: 1px solid rgba(0,255,128,0.18);
  background: rgba(255,255,255,0.03);
}

.portal-request-block,
.checkitout-block {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255,0,0,.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0,255,128,.12), transparent 35%),
    linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-green);
  overflow: hidden;
  transition: 0.18s ease;
  margin: 22px 0;
}

.portal-request-block:hover,
.checkitout-block:hover {
  transform: translateY(-2px);
  border-color: var(--line-green);
  box-shadow: 0 0 30px rgba(0,255,128,.12);
}

.portal-request-inner,
.checkitout-content {
  padding: 20px;
}

.portal-live,
.checkitout-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portal-request-inner h3,
.checkitout-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.portal-request-inner p,
.checkitout-sub {
  color: var(--muted);
  line-height: 1.6;
}

.portal-cta {
  margin-top: 14px;
  color: var(--green-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.footer-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  padding: 28px 0 50px;
}

@media (max-width: 768px) {
  .page-shell {
    padding: 12px;
  }

  .hero {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .card,
  .stat-card,
  .detail-card,
  .cta-card,
  .status-box,
  .most-visited-shell,
  .most-visited-card,
  .checkin-shell,
  .checkin-panel,
  .tracker-panel {
    border-radius: 16px;
  }

  .site-header {
    border-radius: 18px;
  }

  .site-header-inner {
    padding: 12px 14px;
  }
}




.jbgods-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.jbgods-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #070707;
  border-radius: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
}

.jbgods-status-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.jbgods-status-badge strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.jbgods-status-badge span {
  display: block;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.badge-verified {
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.2);
}

.badge-verified strong {
  color: #ff2b2b;
}

.badge-not-verified strong {
  color: #888;
}

.badge-claimed {
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.18);
}

.badge-claimed strong {
  color: #00ff88;
}

.badge-not-claimed strong {
  color: #888;
}







.jbgods-message-block {
  margin: 30px auto;
  max-width: 900px;
  padding: 24px;
  border-radius: 22px;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.jbgods-message-block input,
.jbgods-message-block textarea {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #111;
  color: white;
}

.jbgods-message-block textarea {
  min-height: 130px;
}

.jbgods-message-block button {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #11ff88;
  color: #000;
  font-weight: 800;
  cursor: pointer;
}

.message-confirm {
  color: #11ff88;
  font-weight: 700;
}

.message-card {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
}
