:root {
  color-scheme: dark;
  --bg: #060b17;
  --surface: #0f1b34;
  --panel: #121f38;
  --panel-soft: rgba(18,31,56,0.72);
  --text: #ffffff;
  --text-strong: #ffffff;
  --muted: #ffffff;
  --muted-soft: rgba(255,255,255,0.85);
  --accent: #6b7280;
  --accent-soft: #96a1b8;
  --trust: #2563eb;
  --trust-strong: #1d4ed8;
  --trust-gradient: linear-gradient(90deg, var(--trust), var(--trust-strong));
  --trust-shadow: rgba(37,98,235,0.18);
  --cta: #f97316;
  --cta-strong: #ff7a18;
  --success: #10b981;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #08101e 0%, #060a15 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 15% 12%, rgba(37,98,235,0.22), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(249,115,22,0.18), transparent 18%);
  filter: blur(36px);
  opacity: 0.95;
  animation: glow-orbit 20s ease-in-out infinite alternate;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.navbar {
  background: rgba(8, 14, 23, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}

.navbar .navbar-brand {
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.navbar .navbar-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(37,98,235,0.24);
  box-shadow: 0 10px 28px rgba(37,98,235,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}

.navbar .nav-link,
.navbar .btn-outline-primary {
  color: var(--muted);
}

.navbar .nav-link:hover,
.navbar .btn-outline-primary:hover {
  color: var(--trust);
}

.btn-primary,
.navbar .btn-primary {
  background: var(--trust-gradient);
  color: #fff;
  border: 1px solid rgba(37,98,235,0.22);
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(90deg, var(--trust-strong), var(--trust));
}

.btn-outline-primary {
  color: var(--trust);
  border-color: rgba(37,98,235,0.18);
}

.btn-outline-primary:hover {
  background: rgba(37,98,235,0.08);
}

.btn-cta {
  background: linear-gradient(90deg, var(--cta), var(--cta-strong));
  color: #fff;
  border: none;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(249,115,22,0.16);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-cta:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn,
button {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
button:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
button:focus-visible,
.form-control:focus,
.form-select:focus,
.hero .fake-searchbar input:focus {
  outline: none;
  box-shadow: 0 0 0 0.35rem rgba(37,98,235,0.18);
}

.badge-limited,
.tag-limited,
.pill--limited {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(90deg, var(--trust), var(--trust-strong));
  color: #fff;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 22px rgba(37,98,235,0.18);
}

.card-img-top .overlay .btn,
.card-img-top .overlay .btn.btn-primary {
  background: var(--trust) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37,98,235,0.15);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.card-img-top .overlay .btn:hover,
.card-img-top .overlay .btn.btn-primary:hover {
  background: var(--trust-strong) !important;
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(37,98,235,0.30);
}

.card-img-top .badges div[data-text*="LIMITED"],
.card-img-top .badges div[data-text*="limited"],
.product-wrapper .badges div[data-text*="LIMITED"],
.product-wrapper .badges div[data-text*="limited"] {
  background: linear-gradient(90deg, var(--trust), var(--trust-strong)) !important;
  color: #fff !important;
  border-color: rgba(37,98,235,0.18) !important;
  box-shadow: 0 10px 28px rgba(37,98,235,0.18) !important;
}

.price-save {
  color: var(--success);
  font-weight: 700;
}

.text-trust {
  color: var(--trust);
  font-weight: 700;
}

.text-cta {
  color: var(--cta);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
  background-position: center;
  background-size: cover;
}

.hero .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top right, rgba(37,98,235,0.28), transparent 18%),
    radial-gradient(circle at 25% 20%, rgba(56,139,255,0.22), transparent 16%),
    radial-gradient(circle at bottom left, rgba(37,98,235,0.14), transparent 18%),
    linear-gradient(180deg, rgba(7, 13, 29, 0.35), rgba(6, 11, 23, 0.96));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.72) 54%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding: 3rem;
  background: linear-gradient(180deg, rgba(6,11,23,0.94), rgba(6,11,23,0.86));
  border: 1px solid rgba(37,98,235,0.22);
  box-shadow: 0 42px 110px rgba(9, 15, 33, 0.38), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(22px);
  border-radius: 32px;
  animation: fade-up 0.9s ease both;
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,98,235,0.26), rgba(56,139,255,0.13));
  border: 1px solid rgba(37,98,235,0.38);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 35px rgba(37,98,235,0.15);
}

.hero-chip-dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34,197,94,0.8);
}

.hero-chip-dot::after {
  content: '';
  position: absolute;
  inset: -0.35rem;
  border-radius: inherit;
  background: rgba(34,197,94,0.2);
  animation: online-ring 1.8s ease-out infinite;
}

.hero .content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero .content p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.section-title h2 {
  color: var(--text-strong);
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: var(--trust-gradient);
}

.section-title p {
  color: rgba(255,255,255,0.78);
}

.text-trust-gradient {
  background: var(--trust-gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero .content .stats-wrapper {
  margin-top: 1.2rem;
}

.hero .content .stats {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15,23,42,0.68), rgba(8,13,24,0.52));
  border: 1px solid rgba(37,98,235,0.16);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 18px 55px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
}

.hero .content .stats > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.7rem;
  row-gap: 0.1rem;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  animation: fade-up 1.1s ease both;
}

.hero .content .stats > div:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 14px;
  background: rgba(37,98,235,0.13);
  border: 1px solid rgba(37,98,235,0.2);
  color: #96a1b8;
  box-shadow: 0 10px 25px rgba(37,98,235,0.08);
}

.stat-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero .content .stats .value {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-strong);
}

.hero .content .stats .label {
  display: block;
  min-width: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}

.hero .image {
  width: 100%;
}

.hero .image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 4rem 0;
}

.section .section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.changelog-panel {
  margin: 2rem 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(6,11,23,0.92), rgba(15,27,52,0.68));
  border: 1px solid rgba(37,98,235,0.18);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
}

.changelog-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.changelog-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  background: rgba(37,98,235,0.13);
  border: 1px solid rgba(37,98,235,0.24);
  border-radius: 999px;
  color: #96a1b8;
  font-size: 0.78rem;
  font-weight: 800;
}

.changelog-heading h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.25rem;
}

.changelog-heading p,
.changelog-empty-note {
  margin: 0.25rem 0 0;
  color: rgba(255,255,255,0.72);
}

.changelog-list {
  display: grid;
  gap: 0.75rem;
}

.changelog-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 16px;
}

.changelog-entry span {
  font-weight: 900;
  line-height: 1.5;
}

.changelog-entry p {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.changelog-entry-added span {
  color: #22c55e;
}

.changelog-entry-fixed span {
  color: #96a1b8;
}

.changelog-entry-removed span {
  color: #f97316;
}

.changelog-empty-note {
  margin-top: -0.5rem;
  padding-left: 0.15rem;
}

.legal-page {
  position: relative;
}

.legal-page::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(760px, 90vw);
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37,98,235,0.2), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.legal-hero {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  background: rgba(37,98,235,0.13);
  border: 1px solid rgba(37,98,235,0.24);
  border-radius: 999px;
  color: #96a1b8;
  font-size: 0.8rem;
  font-weight: 800;
}

.legal-hero h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.legal-hero p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
}

.legal-shell {
  max-width: 900px;
  margin: 0 auto;
}

.legal-panel {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,11,23,0.94), rgba(15,27,52,0.7));
  border: 1px solid rgba(37,98,235,0.18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.04);
}

.legal-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(37,98,235,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.legal-panel-header span {
  color: #96a1b8;
  font-weight: 900;
}

.legal-panel-header p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.legal-content {
  padding: 1.5rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
}

.legal-content :where(h1, h2, h3, h4, h5, h6) {
  color: var(--text-strong);
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.legal-content :where(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.legal-content :where(p, li) {
  color: rgba(255,255,255,0.82);
}

.legal-content a {
  color: #96a1b8;
  font-weight: 700;
}

.legal-content :where(ul, ol) {
  padding-left: 1.25rem;
}

.legal-content :where(hr) {
  border-color: rgba(255,255,255,0.1);
  opacity: 1;
}

.card,
.product-card,
footer.footer {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
  animation: fade-up 0.95s ease both;
}

.card:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,98,235,0.18);
}

.card-img-top {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-top .overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: flex-start;
}

.card-img-top .badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-img-top .badges div {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(37,98,235,0.92);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.card-body .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--text-strong);
  font-weight: 700;
}

.price s {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
}

.card-body .text-primary,
.card-body .stock-unlimited {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-title {
  font-size: 1.08rem;
  margin: 0;
  line-height: 1.4;
}

.form-control,
.form-select,
.hero .fake-searchbar input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

.form-control::placeholder,
.form-select::placeholder,
.hero .fake-searchbar input::placeholder {
  color: rgba(255,255,255,0.75);
}

.hero .fake-searchbar {
  cursor: pointer;
}

.hero .fake-searchbar input {
  cursor: pointer;
}

footer.footer {
  background: rgba(6, 11, 23, 0.98);
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
}

footer.footer .logo p,
footer.footer .footer-heading,
footer.footer h2,
footer.footer h3,
footer.footer h4,
footer.footer h5,
footer.footer h6 {
  color: var(--text-strong);
}

footer.footer .nav-link,
footer.footer .nav-link:focus,
footer.footer .nav-link:hover {
  color: rgba(233, 242, 255, 0.94);
}

footer.footer .nav-link:hover,
footer.footer .nav-link:focus {
  color: var(--trust);
  text-decoration: underline;
}

footer.footer ul.nav {
  gap: 0.5rem;
}

footer.footer li {
  margin-bottom: 0.65rem;
}

footer.footer a,
footer.footer li,
footer.footer p,
footer.footer span,
footer.footer small {
  color: rgba(233, 242, 255, 0.92);
}

@media (max-width: 991px) {
  .hero .content {
    padding: 2.5rem;
  }

  .hero .content .stats {
    grid-template-columns: 1fr;
  }

  .hero .content .stats > div {
    grid-template-columns: auto minmax(2.5rem, auto) 1fr;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0;
  }

  .hero .content .stats .stat-icon {
    grid-row: 1;
  }

  .hero .content .stats .value,
  .hero .content .stats .label {
    align-self: center;
  }

  .hero .content .stats .label {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 3rem 0;
  }

  .hero .content {
    padding: 2rem;
  }

  .hero .content .stats {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero .content .stats > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .hero .content .stats > div:last-child {
    border-bottom: 0;
  }

  .container {
    padding: 1rem;
  }
}

/* Status Page Styling */
.status-summary-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 1.5rem 0 3rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.11), rgba(34,197,94,0.045));
  border: 1px solid rgba(34,197,94,0.24);
  border-radius: 20px;
  box-shadow: 0 20px 70px rgba(16,185,129,0.08);
}

.status-summary-orb {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34,197,94,0.95), inset 0 0 6px rgba(34,197,94,0.5);
  animation: glow-pulse 2s ease-in-out infinite;
}

.status-summary-orb::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: rgba(34,197,94,0.28);
  animation: online-ring 1.8s ease-out infinite;
}

.status-summary-label {
  margin: 0;
  color: #22c55e;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.status-summary-copy {
  margin: 0.2rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.45;
}

@keyframes glow-pulse {
  0% { transform: scale(1); box-shadow: 0 0 12px rgba(34,197,94,0.8), inset 0 0 6px rgba(34,197,94,0.4); }
  50% { transform: scale(1.12); box-shadow: 0 0 28px rgba(34,197,94,1), inset 0 0 10px rgba(34,197,94,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 12px rgba(34,197,94,0.8), inset 0 0 6px rgba(34,197,94,0.4); }
}

@keyframes online-ring {
  0% {
    transform: scale(0.65);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .status-summary-panel {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0.95rem 1rem;
  }
}

@keyframes glow-orbit {
  0% {
    background-position: 10% 12%, 90% 18%;
  }

  50% {
    background-position: 20% 18%, 78% 28%;
  }

  100% {
    background-position: 12% 22%, 88% 12%;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}