:root {
  --bg: #03080f;
  --bg-soft: rgba(6, 18, 29, 0.82);
  --panel: rgba(9, 22, 35, 0.76);
  --panel-strong: rgba(8, 18, 29, 0.92);
  --border: rgba(76, 190, 255, 0.16);
  --border-strong: rgba(76, 190, 255, 0.32);
  --text: #eef8ff;
  --muted: #9fb7c9;
  --muted-2: #7e96a9;
  --accent: #17bfff;
  --accent-2: #58d4ff;
  --accent-glow: rgba(23, 191, 255, 0.35);
  --success: #59e6b1;
  --danger: #ff6b8a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(6, 84, 120, 0.24), transparent 28%),
    radial-gradient(circle at 80% 14%, rgba(0, 173, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #05111d 0%, #03080f 52%, #02060c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(90deg, rgba(23, 191, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(23, 191, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 90%);
}

body::after {
  background:
    radial-gradient(circle at 30% 10%, rgba(23,191,255,0.14), transparent 20%),
    radial-gradient(circle at 50% 40%, rgba(23,191,255,0.06), transparent 28%),
    radial-gradient(circle at 75% 10%, rgba(255,255,255,0.07), transparent 15%);
  filter: blur(20px);
  z-index: -3;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.blur-panel {
  background: linear-gradient(180deg, rgba(9, 22, 35, 0.9), rgba(4, 14, 24, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dff6ff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent-glow);
}

.section-title {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-shell {
  position: relative;
  padding-bottom: 80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: 14px auto 0;
  width: min(1320px, calc(100% - 24px));
  padding: 18px 22px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 4px;
  flex-shrink: 0;
}

.brand-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-main span {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(23, 191, 255, 0.42);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  flex-wrap: wrap;
  justify-content: center;
}

.desktop-nav a,
.nav-button {
  color: #cfe7f6;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
  transition: 0.22s ease;
}

.desktop-nav a::before,
.nav-button::before {
  content: "•";
  color: var(--accent);
  opacity: 0.85;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-button:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(23, 191, 255, 0.28);
}

.nav-button {
  border: none;
  background: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button,
.profile-pill,
.discord-pill,
.mobile-menu-btn,
.filter-button {
  border: 1px solid var(--border);
  background: rgba(7, 18, 29, 0.88);
  color: #e8f8ff;
  border-radius: 999px;
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.22s ease;
}

.icon-button strong {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(23, 191, 255, 0.14);
  color: var(--accent-2);
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
}

.profile-pill:hover,
.discord-pill:hover,
.icon-button:hover,
.mobile-menu-btn:hover,
.filter-button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.small-btn:hover,
.add-btn:hover,
.remove-btn:hover,
.submit-btn:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(23,191,255,0.08), 0 0 26px rgba(23,191,255,0.14);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: min(1320px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  border: 1px solid var(--border);
  background: rgba(4, 12, 20, 0.72);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.hero {
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 26px;
  align-items: center;
}

.hero-card,
.hero-visual {
  min-height: 620px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card {
  padding: 42px 34px;
}

.hero-card::before,
.hero-visual::before,
.page-hero::before,
.help-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23,191,255,0.08), transparent 45%, rgba(255,255,255,0.04));
  pointer-events: none;
}

.mega-watermark {
  position: absolute;
  inset: 16px auto auto 18px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: 0.85;
  color: rgba(135, 215, 255, 0.05);
  text-transform: uppercase;
  pointer-events: none;
}

.hero-card h1 {
  max-width: 780px;
  margin: 22px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-card h1 span,
.neon-text {
  color: var(--accent);
  text-shadow: 0 0 26px rgba(23, 191, 255, 0.35);
}

.hero-card p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.hero-actions,
.dual-actions,
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.small-btn,
.add-btn,
.remove-btn,
.submit-btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 15px 22px;
  transition: 0.22s ease;
}

.primary-btn,
.submit-btn,
.add-btn {
  background: linear-gradient(135deg, rgba(14, 154, 214, 0.95), rgba(38, 202, 255, 0.92));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(6, 123, 171, 0.28);
}

.ghost-btn,
.small-btn,
.remove-btn {
  background: rgba(4, 12, 21, 0.72);
  border-color: var(--border);
  color: var(--text);
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mini-stat,
.status-pill {
  border: 1px solid var(--border);
  background: rgba(5, 15, 24, 0.72);
  color: #d8efff;
  border-radius: 12px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 28%, rgba(23,191,255,0.22), transparent 18%),
    radial-gradient(circle at 50% 57%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 27, 40, 0.96), rgba(2, 8, 13, 0.8));
}

.hero-visual img {
  width: min(640px, 85%);
  filter: drop-shadow(0 18px 70px rgba(23,191,255,0.32));
}

.orbit-ring,
.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  border: 1px solid rgba(83, 214, 255, 0.28);
  border-radius: 999px;
}

.orbit-ring {
  width: 430px;
  height: 430px;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
}

.orbit-ring::before {
  inset: -26px;
  border-color: rgba(83, 214, 255, 0.15);
}

.orbit-ring::after {
  inset: 34px -58px;
  border-color: rgba(83, 214, 255, 0.2);
}

.floating-note {
  position: absolute;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(11, 22, 36, 0.84);
  color: #e5f7ff;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.note-top { top: 52px; right: 48px; }
.note-right { top: 50%; right: 26px; transform: translateY(-50%); }
.note-bottom { bottom: 56px; left: 42px; }

.section {
  padding: 42px 0;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

.feature-spotlight {
  border-radius: 30px;
  padding: 26px;
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.feature-spotlight::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 14, 0.96));
}

.feature-spotlight .preview-frame {
  width: min(90%, 450px);
  margin: 90px auto 18px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 30, 43, 0.88), rgba(4, 12, 22, 0.9));
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}

.preview-frame img {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.ws-chip {
  position: absolute;
  right: 52px;
  bottom: 138px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(23,191,255,0.42);
}

.release-grid,
.review-grid,
.feature-grid,
.card-grid,
.blog-grid,
.package-grid,
.service-grid,
.product-grid,
.search-results {
  display: grid;
  gap: 22px;
}

.release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-card,
.review-card,
.feature-box,
.info-card,
.blog-card,
.package-card,
.service-card,
.product-card,
.search-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.release-card,
.package-card,
.service-card,
.product-card,
.search-card {
  background: linear-gradient(180deg, rgba(9, 23, 35, 0.92), rgba(4, 12, 20, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.release-card img,
.product-card img,
.search-card img,
.package-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(3, 8, 12, 0.5);
}

.release-card .content,
.product-copy,
.search-copy,
.package-card .content,
.service-card .content,
.blog-card,
.review-card,
.feature-box,
.info-card {
  padding: 22px;
}

.card-meta,
.product-meta,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.badge,
.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(22, 171, 241, 0.13);
  border: 1px solid rgba(22, 171, 241, 0.26);
  color: #d9f4ff;
  font-weight: 700;
  font-size: 0.82rem;
}

.card-title,
.review-card h3,
.feature-box h3,
.info-card h3,
.package-card h3,
.service-card h3,
.product-copy h3,
.blog-card h3,
.search-copy h3 {
  margin: 14px 0 10px;
  font-size: 1.34rem;
  line-height: 1.2;
}

.card-text,
.review-card p,
.feature-box p,
.info-card p,
.package-card p,
.service-card p,
.product-copy p,
.blog-card p,
.search-copy p,
.muted {
  color: var(--muted);
  line-height: 1.65;
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  background: linear-gradient(180deg, rgba(8, 22, 34, 0.94), rgba(4, 12, 21, 0.9));
  border: 1px solid var(--border);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(89, 224, 255, 0.8), rgba(84, 102, 255, 0.8));
  font-weight: 700;
}

.stars {
  color: #ffd85a;
  letter-spacing: 0.14em;
  font-size: 0.96rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: center;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-box,
.info-card,
.blog-card {
  background: linear-gradient(180deg, rgba(8, 21, 33, 0.95), rgba(4, 11, 18, 0.91));
  border: 1px solid var(--border);
}

.feature-box .icon,
.info-card .icon,
.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(18, 178, 247, 0.13);
  border: 1px solid rgba(18, 178, 247, 0.28);
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(23,191,255,0.12);
}

.feature-visual {
  border-radius: 30px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 56% 24%, rgba(23,191,255,0.26), transparent 20%),
    linear-gradient(180deg, rgba(10, 25, 38, 0.96), rgba(4, 11, 18, 0.92));
}

.feature-visual img {
  width: min(420px, 70%);
  filter: drop-shadow(0 18px 70px rgba(23,191,255,0.3));
}

.help-banner {
  padding: 34px 34px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.help-banner .cta-copy {
  max-width: 760px;
}

.help-banner h2,
.page-hero h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero {
  min-height: 360px;
  border-radius: 30px;
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 14px;
  background:
    radial-gradient(circle at 78% 20%, rgba(23,191,255,0.16), transparent 20%),
    linear-gradient(180deg, rgba(8, 22, 35, 0.95), rgba(4, 10, 16, 0.92));
}

.page-hero .hero-side-image {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: min(400px, 32%);
  filter: drop-shadow(0 18px 70px rgba(23,191,255,0.28));
  opacity: 0.9;
}

.page-layout {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.toolbar .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

input[type="search"],
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(4, 12, 20, 0.88);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: 0.18s ease;
}

input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(23,191,255,0.08);
}

.toolbar .inputs > * {
  flex: 1 1 220px;
}

.product-grid,
.search-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card .product-copy,
.search-card .search-copy {
  display: grid;
  gap: 12px;
}

.product-topline,
.search-topline {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.add-btn.added {
  background: rgba(89, 230, 177, 0.12);
  color: #e8fff6;
  border: 1px solid rgba(89, 230, 177, 0.3);
  box-shadow: none;
}

.info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-grid,
.package-grid,
.service-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-empty,
.empty-state,
.cart-empty {
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: rgba(5, 15, 24, 0.5);
}

.site-footer {
  padding: 24px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 22px;
  border-radius: 28px;
  padding: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

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

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(1, 6, 10, 0.72);
  backdrop-filter: blur(10px);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 70;
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(560px, 100%);
  min-height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.close-button {
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(4, 12, 20, 0.8);
  color: #fff;
}

.cart-items {
  display: grid;
  gap: 14px;
  max-height: 34vh;
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: start;
  background: rgba(5, 14, 23, 0.84);
}

.cart-item img {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.remove-btn {
  align-self: center;
  padding: 12px 16px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

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

.checkout-form label {
  display: grid;
  gap: 8px;
  color: #dcefff;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
}

.honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
}

.form-status.error {
  color: #ff9ab1;
}

.form-status.success {
  color: #b8ffd6;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  border-radius: 999px;
  padding: 14px 20px;
  background: rgba(8, 22, 35, 0.95);
  border: 1px solid var(--border-strong);
  color: #e6f7ff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 90;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hidden {
  display: none !important;
}

@media (max-width: 1150px) {
  .desktop-nav,
  .header-actions .profile-pill,
  .header-actions .discord-pill {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero,
  .release-layout,
  .feature-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-visual,
  .feature-visual {
    min-height: auto;
  }

  .hero-visual,
  .feature-visual {
    min-height: 480px;
  }

  .page-hero .hero-side-image {
    width: 260px;
    opacity: 0.25;
  }

  .review-grid,
  .feature-grid,
  .product-grid,
  .search-results,
  .blog-grid,
  .package-grid,
  .service-grid,
  .release-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1320px);
  }

  .topbar {
    width: min(100% - 16px, 1320px);
    padding: 14px 16px;
  }

  .mobile-menu {
    width: min(100% - 16px, 1320px);
  }

  .hero,
  .section {
    padding-top: 24px;
  }

  .hero-card,
  .hero-visual,
  .feature-visual,
  .feature-spotlight,
  .page-hero,
  .help-banner {
    border-radius: 24px;
  }

  .hero-card,
  .page-hero,
  .feature-spotlight,
  .help-banner {
    padding: 24px 20px;
  }

  .hero-card h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .floating-note {
    position: static;
    transform: none !important;
    max-width: none;
    margin: 10px 20px 0;
  }

  .orbit-ring,
  .mega-watermark,
  .ws-chip,
  .page-hero .hero-side-image {
    display: none;
  }

  .review-grid,
  .feature-grid,
  .product-grid,
  .search-results,
  .blog-grid,
  .package-grid,
  .service-grid,
  .release-grid,
  .card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .help-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar .inputs {
    flex-direction: column;
  }
}


/* LYROX DETAIL + LANG EXTENSIONS */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(4, 12, 21, 0.82);
}

.lang-link {
  min-width: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
  color: var(--muted);
  transition: 0.2s ease;
  font-weight: 700;
}

.lang-link.active {
  color: #fff;
  background: rgba(23, 191, 255, 0.16);
  box-shadow: 0 0 20px rgba(23, 191, 255, 0.14);
}

.card-image-link {
  display: block;
  overflow: hidden;
}

.card-image-link img,
.preview-frame img,
.detail-preview img {
  transition: transform 0.28s ease;
}

.product-card:hover .card-image-link img,
.search-card:hover .card-image-link img,
.release-card:hover .card-image-link img,
.package-card:hover img,
.detail-preview:hover img {
  transform: scale(1.03);
}

.card-title-link {
  color: inherit;
  text-decoration: none;
}

.card-title-link:hover h3,
.card-title-link:hover .card-title {
  color: #fff;
  text-shadow: 0 0 18px rgba(23, 191, 255, 0.22);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumb strong {
  color: #fff;
}

.detail-hero {
  border-radius: 30px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 22, 35, 0.95), rgba(4, 10, 16, 0.92));
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.detail-copy .section-title {
  margin-top: 18px;
  margin-bottom: 14px;
}

.detail-preview {
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 30, 43, 0.88), rgba(4, 12, 22, 0.9));
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}

.detail-preview img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.detail-paragraphs {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.product-card,
.search-card,
.release-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card .product-copy,
.search-card .search-copy,
.release-card .content {
  height: 100%;
}

@media (max-width: 1150px) {
  .language-switch {
    display: none;
  }

  .detail-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}


/* Updated review cards from user screenshots */
.review-grid {
  grid-template-columns: 1fr;
}

.review-card-rich {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 24px;
  align-items: start;
  border-left: 6px solid #ff4fa0;
  background: linear-gradient(180deg, rgba(10, 10, 22, 0.98), rgba(7, 8, 18, 0.96));
  min-height: 250px;
}

.review-main {
  display: grid;
  gap: 14px;
}

.review-topline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f4f7ff;
  font-size: 1.05rem;
}

.review-badge-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #7aa6ff 20%, #1d315c 60%, #0b1023 100%);
  box-shadow: 0 0 18px rgba(122, 166, 255, 0.18);
}

.review-author {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 500;
  color: #f2f3f7;
}

.review-quote {
  margin: 0;
  padding: 8px 0 8px 18px;
  border-left: 4px solid rgba(255, 255, 255, 0.14);
  color: #e8e8ef;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.review-section-label {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
}

.review-rating-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f3f7;
  font-size: 1.05rem;
}

.review-time-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2f3f7;
  font-size: 1rem;
}

.review-meta-line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.review-media {
  display: flex;
  justify-content: flex-end;
}

.review-media img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

@media (max-width: 760px) {
  .review-card-rich {
    grid-template-columns: 1fr;
  }

  .review-media {
    justify-content: flex-start;
  }

  .review-media img {
    width: 92px;
    height: 92px;
  }
}



/* Final polish and motion */
:root {
  --ease-smooth: cubic-bezier(.22,1,.36,1);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .8s var(--ease-smooth),
    transform .8s var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.topbar {
  animation: topbarFloat 5.5s ease-in-out infinite;
}

@keyframes topbarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

.hero-visual {
  --mx: 0px;
  --my: 0px;
}

.hero-visual img {
  transform: translate(var(--mx), var(--my));
  animation: heroFloat 7s ease-in-out infinite;
  transition: transform .25s ease-out;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(var(--mx), var(--my)) translateY(0); }
  50% { transform: translate(var(--mx), var(--my)) translateY(-10px); }
}

.orbit-ring {
  animation: spinOrbit 22s linear infinite;
}

@keyframes spinOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-note {
  animation: notePulse 6s ease-in-out infinite;
}

.note-right { animation-delay: .8s; }
.note-bottom { animation-delay: 1.6s; }

@keyframes notePulse {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow); }
  50% { transform: translateY(-6px); box-shadow: 0 28px 90px rgba(0,0,0,.46); }
}

.primary-btn,
.ghost-btn,
.small-btn,
.filter-button {
  position: relative;
  overflow: hidden;
}

.primary-btn::after,
.ghost-btn::after,
.small-btn::after,
.filter-button::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -35%;
  width: 28%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.24), transparent);
  transition: transform .9s var(--ease-smooth);
}

.primary-btn:hover::after,
.ghost-btn:hover::after,
.small-btn:hover::after,
.filter-button:hover::after {
  transform: translateX(420%) rotate(18deg);
}

.release-card,
.review-card,
.feature-box,
.blog-card,
.package-card,
.service-card,
.product-card,
.search-card,
.info-card {
  transition:
    transform .34s var(--ease-smooth),
    border-color .28s ease,
    box-shadow .34s ease;
}

.release-card:hover,
.review-card:hover,
.feature-box:hover,
.blog-card:hover,
.package-card:hover,
.service-card:hover,
.product-card:hover,
.search-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(23,191,255,.1);
}

.section .eyebrow::before,
.service-icon,
.icon,
.badge {
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(23,191,255,.16); }
  50% { box-shadow: 0 0 28px rgba(23,191,255,.34); }
}

.discord-pill {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .hero-visual img,
  .orbit-ring,
  .floating-note,
  .section .eyebrow::before,
  .service-icon,
  .icon,
  .badge {
    animation: none !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Availability and enhanced motion */
.availability-panel,
.support-highlight {
  border-radius: 26px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.availability-panel::before,
.support-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(23,191,255,0.12), transparent 26%),
    linear-gradient(120deg, rgba(23,191,255,0.05), transparent 46%, rgba(255,255,255,0.04));
  pointer-events: none;
}

.availability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.available-pill {
  background: rgba(89, 230, 177, 0.13);
  border: 1px solid rgba(89, 230, 177, 0.28);
  color: #e8fff6;
}

.building-pill {
  background: rgba(255, 196, 87, 0.11);
  border: 1px solid rgba(255, 196, 87, 0.24);
  color: #fff4d7;
}

.release-card::before,
.product-card::before,
.search-card::before,
.blog-card::before,
.package-card::before,
.service-card::before,
.feature-box::before,
.info-card::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.05) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}

.release-card:hover::before,
.product-card:hover::before,
.search-card:hover::before,
.blog-card:hover::before,
.package-card:hover::before,
.service-card:hover::before,
.feature-box:hover::before,
.info-card:hover::before,
.review-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.hero-card {
  animation: heroCopyFloat 6s ease-in-out infinite;
}

@keyframes heroCopyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.review-card {
  animation: reviewPulse 7s ease-in-out infinite;
}

.review-card:nth-child(2) { animation-delay: .6s; }
.review-card:nth-child(3) { animation-delay: 1.2s; }

@keyframes reviewPulse {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 24px 80px rgba(0,0,0,.44), 0 0 24px rgba(23,191,255,.10); }
}

.status-pill,
.badge,
.category-pill {
  transition: transform .24s ease, box-shadow .24s ease;
}

.status-pill:hover,
.badge:hover,
.category-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(23,191,255,.14);
}



/* Updated main logo styling */
.hero-visual img {
  width: min(760px, 92%);
  max-height: 520px;
  object-fit: contain;
}

.hero-side-image {
  width: min(460px, 36%);
  max-height: 300px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-side-image {
    position: static;
    width: min(320px, 72%);
    max-height: 220px;
    margin-top: 18px;
    justify-self: center;
    display: block;
  }

  .hero-visual img {
    width: min(560px, 92%);
    max-height: 360px;
  }
}


/* Script preview galleries */
.preview-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.preview-card {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(7, 15, 28, 0.95), rgba(5, 11, 22, 0.95));
  border: 1px solid rgba(86, 162, 255, 0.16);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.preview-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  background: #06101d;
}

.preview-card figcaption {
  padding: 14px 18px 18px;
  color: rgba(235, 244, 255, 0.88);
  font-size: 0.98rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(9, 20, 38, 0.92), rgba(7, 14, 28, 0.96));
}

.preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(87, 194, 255, 0.28);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(23, 191, 255, 0.08);
}

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


/* prettier reviews */
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card-pretty {
  background:
    radial-gradient(circle at top right, rgba(23, 191, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(9, 22, 34, 0.96), rgba(4, 11, 18, 0.94));
  border: 1px solid rgba(63, 157, 255, 0.16);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 100%;
}

.review-card-pretty::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(23,191,255,0), rgba(23,191,255,0.9), rgba(23,191,255,0));
  opacity: 0.7;
}

.review-glow {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23,191,255,0.22), transparent 68%);
  pointer-events: none;
}

.review-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-label,
.review-count,
.review-chip,
.review-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(82, 153, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 245, 255, 0.84);
}

.review-label {
  padding: 8px 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-count {
  padding: 8px 12px;
  font-weight: 700;
  color: var(--accent-2);
}

.review-head {
  align-items: center;
  margin-bottom: 18px;
}

.review-user h3 {
  margin: 0;
  font-size: 1.34rem;
}

.review-rating-badge {
  padding: 9px 12px;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 84px;
}

.review-rating-badge .stars {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.review-rating-badge span:last-child {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-text {
  color: rgba(232, 241, 250, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 22px;
  position: relative;
}

.review-text::before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -20px;
  font-size: 3rem;
  color: rgba(23, 191, 255, 0.16);
  font-family: Georgia, serif;
}

.review-footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.review-chip {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.review-card-pretty .avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow:
    0 0 22px rgba(23, 191, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
  font-size: 1rem;
}

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

  .review-rating-badge {
    min-width: 76px;
  }
}


/* tuned release layout / less visual shifting */
.release-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.feature-spotlight {
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.feature-spotlight .mega-watermark {
  top: 10px;
  left: 16px;
  font-size: clamp(5rem, 10vw, 8rem);
  opacity: 0.08;
  line-height: 0.88;
}

.feature-spotlight .preview-frame {
  width: min(86%, 410px);
  margin: 54px auto 18px;
  padding: 12px;
}

.feature-spotlight .content {
  margin-top: 4px;
}

.ws-chip {
  right: 34px;
  bottom: 116px;
  font-size: 2.5rem;
}

.release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.release-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.release-card .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.release-card .inline-actions {
  margin-top: auto;
  padding-top: 4px;
}

.release-card .card-title {
  min-height: 2.6em;
}

.release-card .card-text {
  min-height: 3.9em;
}

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

  .feature-spotlight .preview-frame {
    width: min(88%, 460px);
    margin-top: 42px;
  }

  .ws-chip {
    right: 28px;
    bottom: 108px;
  }
}

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

  .feature-spotlight {
    padding: 20px;
  }

  .feature-spotlight .preview-frame {
    width: min(100%, 420px);
    margin-top: 34px;
  }

  .feature-spotlight .mega-watermark {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }
}
