/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-bright: #7c3aed;
  --purple-mid: #6d28d9;
  --purple-dark: #4c1d95;
  --purple-glow: rgba(124, 58, 237, 0.5);
  --bg-top: #050508;
  --bg-bottom: #2e1065;
  --green-trust: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.35);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --glass: rgba(15, 10, 30, 0.65);
  --glass-border: rgba(124, 58, 237, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(180deg, var(--bg-top) 0%, #1a0533 45%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background Effects ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: gridDrift 20s linear infinite;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Announcement Bar ── */
.announcement-bar {
  position: relative;
  z-index: 100;
  background: var(--purple-bright);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 2px 20px var(--purple-glow);
  overflow: hidden;
}

.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(5, 5, 12, 0.85);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-omega {
  font-size: 2rem;
  color: var(--purple-bright);
  text-shadow: 0 0 20px var(--purple-glow);
  line-height: 1;
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-bright);
  box-shadow: 0 0 8px var(--purple-glow);
  transition: width 0.3s ease;
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--text);
}

.nav a.nav-active {
  color: var(--text);
}

.nav a.nav-active::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px;
  border: 1px solid var(--purple-bright);
  border-radius: 8px;
  color: var(--text) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 20px var(--purple-glow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Main Layout ── */
main {
  position: relative;
  z-index: 1;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  min-height: calc(100vh - 200px);
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(10, 30, 15, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-trust);
  margin-bottom: 36px;
  box-shadow: 0 0 24px var(--green-glow);
  animation: trustPulse 2.5s ease-in-out infinite;
}

.trust-icon {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px var(--green-trust));
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
  margin-bottom: 20px;
  animation: titleGlow 4s ease-in-out infinite;
}

.title-a {
  display: inline-block;
  color: var(--purple-bright);
  text-shadow: 0 0 30px var(--purple-glow);
  transform: scaleX(0.85);
  animation: lambdaPulse 2s ease-in-out infinite;
}

.title-e {
  letter-spacing: 0.15em;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ── Buttons ── */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: stretch;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
}

.btn-content svg {
  width: 18px;
  height: 18px;
}

.btn-inline-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover .btn-inline-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover .btn-arrow svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 30px var(--purple-glow);
  animation: gradientShift 4s ease infinite;
}

.btn-primary .btn-arrow {
  background: rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px var(--purple-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-secondary .btn-arrow {
  border-left: 1px solid rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
}

/* ── Why Us ── */
.why-us {
  padding: 80px 24px 60px;
  text-align: center;
  scroll-margin-top: 96px;
}

.why-us .section-subtitle {
  margin-bottom: 40px;
}

.why-us .features {
  margin-bottom: 0;
}

/* ── Features Panel ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--glass-border);
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: rgba(124, 58, 237, 0.08);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 20px var(--purple-glow);
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 29, 149, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-label {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Shop Section ── */
.shop,
.featured {
  padding: 80px 48px;
  text-align: center;
}

.featured-cta {
  margin-top: 40px;
}

/* ── Shop Pages ── */
.shop-page {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 100px;
}

.shop-page-header {
  text-align: center;
  margin-bottom: 32px;
}

.shop-page-header .section-subtitle {
  margin-bottom: 0;
}

.shop-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 36px;
}

.shop-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.shop-search-input {
  width: 100%;
  padding: 14px 18px 14px 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-search-input::placeholder {
  color: var(--text-muted);
}

.shop-search-input:hover {
  border-color: rgba(124, 58, 237, 0.35);
}

.shop-search-input:focus {
  outline: none;
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.shop-search-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card[hidden] {
  display: none;
}

.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-bright);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}

.game-card-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.game-card-body {
  position: relative;
  padding: 18px 20px;
  text-align: left;
}

.game-card-genre {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright);
}

.game-card-body h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 1.05rem);
  margin: 6px 0 8px;
  line-height: 1.35;
}

.game-card-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.game-card-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--purple-bright);
  transition: transform 0.3s;
}

.game-card:hover .game-card-arrow {
  transform: translateY(-50%) translateX(4px);
}

.game-page-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.game-page-banner {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.game-page-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin: 6px 0 10px;
}

.game-page-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.game-cheats-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: left;
}

.shop-page .product-grid {
  max-width: 100%;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

@media (max-width: 1100px) {
  .game-grid,
  .shop-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .game-grid,
  .shop-page .product-grid {
    grid-template-columns: 1fr;
  }
}

.shop-page .back-link {
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .shop-page {
    padding: 32px 24px 80px;
  }

  .game-page-header {
    grid-template-columns: 1fr;
  }

  .game-page-banner {
    height: 120px;
  }
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.product-card-media {
  position: relative;
  margin: -32px -28px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.product-image-link {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border-bottom: none;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.product-card:hover::before {
  left: 150%;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-bright);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--purple-bright);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  animation: badgePulse 2s ease-in-out infinite;
}

.product-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.product-card .product-game {
  color: var(--purple-bright);
  margin-bottom: 0;
}
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.product-game {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

.product-byline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  transition: background 0.2s, border-color 0.2s;
}

.product-byline span {
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 4px;
}

.product-byline:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: var(--purple-bright);
}

.product-reseller-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.product-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.product-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-btn {
  padding: 8px 20px;
  background: var(--purple-bright);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-btn:hover {
  box-shadow: 0 0 20px var(--purple-glow);
  transform: scale(1.05);
}

/* ── Support ── */
.support {
  padding: 60px 48px 100px;
}

.support-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  backdrop-filter: blur(12px);
}

.support-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.support-link:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 0 20px var(--purple-glow);
  transform: translateY(-3px);
}

.support-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.support-link:hover svg {
  transform: scale(1.15);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 20px var(--purple-glow); transform: scale(1); }
  50% { text-shadow: 0 0 35px var(--purple-glow), 0 0 60px rgba(124, 58, 237, 0.3); transform: scale(1.05); }
}

@keyframes trustPulse {
  0%, 100% { box-shadow: 0 0 24px var(--green-glow); }
  50% { box-shadow: 0 0 36px rgba(34, 197, 94, 0.55), 0 0 60px rgba(34, 197, 94, 0.15); }
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(124, 58, 237, 0.4); }
  50% { text-shadow: 0 0 80px rgba(124, 58, 237, 0.6), 0 0 120px rgba(124, 58, 237, 0.2); }
}

@keyframes lambdaPulse {
  0%, 100% { text-shadow: 0 0 30px var(--purple-glow); filter: brightness(1); }
  50% { text-shadow: 0 0 50px var(--purple-glow), 0 0 80px rgba(124, 58, 237, 0.4); filter: brightness(1.3); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
  50% { box-shadow: 0 0 16px var(--purple-glow); }
}

/* Hero entrance */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
}

body.loaded .hero-animate {
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.loaded .hero-animate:nth-child(1) { animation-delay: 0.1s; }
body.loaded .hero-animate:nth-child(2) { animation-delay: 0.25s; }
body.loaded .hero-animate:nth-child(3) { animation-delay: 0.4s; }
body.loaded .hero-animate:nth-child(4) { animation-delay: 0.55s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.features .feature-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.features .feature-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.features .feature-card.reveal:nth-child(3) { transition-delay: 0.35s; }

.product-grid .product-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.product-grid .product-card.reveal:nth-child(2) { transition-delay: 0.15s; }

.shop .section-title.reveal { transition-delay: 0s; }
.shop .section-subtitle.reveal { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-animate,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  width: 100%;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--purple-bright);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  opacity: 0.45;
}

.faq-section,
.product-faq {
  position: relative;
  z-index: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0 18px;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(168, 85, 247, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 0;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--purple-bright);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-section .faq-list {
  margin-top: 24px;
}

.faq-section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple-bright);
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Mobile Nav ── */
@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 5, 20, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .shop,
  .featured,
  .support {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-section {
    padding: 60px 24px;
  }
}

/* ── Product Detail Page ── */
.product-page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 48px 80px;
}

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--purple-bright);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.product-hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 8px 0 16px;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.product-tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--purple-bright);
}

.product-buy-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-price-lg {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--purple-bright);
}

.checkout-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.checkout-disabled:hover {
  transform: none;
}

.checkout-order .checkout-perks {
  margin: 20px 0 0;
  text-align: left;
}

.payment-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(124, 58, 237, 0.14) 100%);
  border: 2px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 24px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: payment-callout-glow 3s ease-in-out infinite;
}

@keyframes payment-callout-glow {
  0%, 100% { box-shadow: 0 0 20px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
  50% { box-shadow: 0 0 32px rgba(34, 197, 94, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
}

.payment-callout--product {
  margin-top: 28px;
  margin-bottom: 4px;
}

.payment-callout--embed {
  margin: 0;
  padding: 14px 18px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(34, 197, 94, 0.4);
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
  animation: none;
  box-shadow: none;
}

.payment-callout-embed-label {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--green-trust);
  color: #041208;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-callout--embed p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

.payment-callout--embed strong {
  color: #86efac;
}

.payment-callout-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.payment-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.payment-callout-icon svg {
  width: 22px;
  height: 22px;
}

.payment-callout-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-callout-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.3;
}

.payment-callout-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: #86efac;
}

.payment-callout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-callout--product .payment-callout-badges {
  margin-bottom: 0;
}

.payment-callout-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.payment-callout-badge--paypal {
  border-color: rgba(0, 156, 222, 0.5);
  background: rgba(0, 156, 222, 0.12);
  color: #7dd3fc;
}

.payment-callout-tip {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.payment-callout-tip strong {
  color: #fde047;
  font-weight: 700;
}

/* ── Checkout ── */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order {
    position: static;
  }

  .checkout-embed-body {
    min-height: 480px;
  }

  .checkout-embed-frame {
    min-height: 480px;
  }
}

.checkout-page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.checkout-page--embedded {
  max-width: 1100px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.checkout-order {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.checkout-order h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin: 8px 0 4px;
}

.checkout-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--green-trust);
}

.checkout-trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkout-fallback {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--purple-bright);
  text-decoration: none;
  transition: opacity 0.2s;
}

.checkout-fallback:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.checkout-embed {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.checkout-embed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(124, 58, 237, 0.12);
  border-bottom: 1px solid var(--glass-border);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.checkout-embed-header svg {
  width: 16px;
  height: 16px;
  color: var(--purple-bright);
}

.checkout-embed-body {
  position: relative;
  flex: 1;
  min-height: 560px;
  background: #0a0a0f;
}

.checkout-embed-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  background: #0a0a0f;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.checkout-embed-loading[hidden],
.checkout-embed--ready .checkout-embed-loading {
  display: none !important;
}

.checkout-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--purple-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-embed-frame {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
  background: #0a0a0f;
  position: relative;
  z-index: 1;
}

.checkout-embed--ready .checkout-embed-frame {
  min-height: 560px;
}

.checkout-embed-error {
  color: #f87171;
  text-align: center;
  padding: 0 24px;
}

.checkout-retry {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.checkout-retry:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.08);
}

.checkout-warning {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: #facc15;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.checkout-warning code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.checkout-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
}

.checkout-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright);
}

.checkout-summary h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin: 8px 0 4px;
}

.checkout-game {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.checkout-total {
  font-size: 1.2rem;
}

.checkout-total strong {
  color: var(--purple-bright);
  font-family: 'Orbitron', sans-serif;
}

.checkout-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 28px 0;
}

.checkout-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.checkout-intro {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.checkout-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.checkout-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.checkout-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-bright);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}

.checkout-copy-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 4px 6px 0;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  font-family: 'Rajdhani', monospace;
  font-size: 0.95rem;
}

.checkout-copy-box--wide {
  display: flex;
  margin-top: 8px;
  width: 100%;
  justify-content: space-between;
}

.checkout-copy-btn {
  padding: 4px 10px;
  background: rgba(124, 58, 237, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-copy-btn:hover {
  background: var(--purple-bright);
}

.checkout-discord-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #5865f2;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.checkout-discord-btn:hover {
  opacity: 0.9;
}

.checkout-fine-print {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
  margin-top: 24px;
}

.checkout-perks {
  list-style: none;
  margin: 0 0 28px;
  text-align: left;
}

.checkout-perks li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.checkout-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-trust);
  font-weight: 700;
}

.checkout-buy-btn {
  width: 100%;
  justify-content: center;
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.product-buy-btn {
  flex-shrink: 0;
}

.checkout-error {
  text-align: center;
  color: var(--text-muted);
  padding: 48px;
}

.checkout-error a {
  color: var(--purple-bright);
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
}

.gallery-thumb {
  flex: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--purple-bright);
}

.gallery-thumb.active {
  box-shadow: 0 0 12px var(--purple-glow);
}

.gallery-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.product-section {
  margin-bottom: 48px;
  text-align: left;
}

.product-section .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.product-reviews .section-title {
  margin-bottom: 0;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-bright);
}

.reviews-stars,
.review-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  backdrop-filter: blur(12px);
}

.review-card .review-stars {
  display: block;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 12px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.steps-list {
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 2;
}

.steps-list a {
  color: var(--purple-bright);
}

.steps-list kbd,
.feature-list kbd {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9em;
}

.steam-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #1b2838;
  max-width: 646px;
}

.steam-embed iframe {
  display: block;
  width: 100%;
  height: 190px;
}

@media (max-width: 768px) {
  .product-page {
    padding: 24px 24px 60px;
  }

  .product-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-thumb img {
    height: 48px;
  }
}

/* ── Brands Page ── */
.brands-page {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.brands-intro {
  text-align: center;
  margin-bottom: 56px;
}

.brands-disclaimer {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.brands-disclaimer strong {
  color: var(--text);
}

.brands-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.brand-card:hover {
  border-color: var(--purple-bright);
  box-shadow: 0 12px 48px rgba(124, 58, 237, 0.2);
}

.brand-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: linear-gradient(180deg, rgba(30, 15, 60, 0.6) 0%, rgba(10, 5, 20, 0.4) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.brand-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.brand-logo--inverted {
  filter: invert(1) brightness(1.15);
}

.brand-card-body {
  padding: 36px 40px 40px;
}

.brand-status {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-trust);
  margin-bottom: 16px;
}

.brand-card-body h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.brand-tagline {
  font-size: 1.05rem;
  color: var(--purple-bright);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.brand-card-body > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.brand-products h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.brand-product-list {
  list-style: none;
  margin-bottom: 32px;
}

.brand-product-list li {
  margin-bottom: 8px;
}

.brand-product-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.brand-product-list a:hover {
  border-color: var(--purple-bright);
  background: rgba(124, 58, 237, 0.08);
  transform: translateX(4px);
}

.brand-product-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--text);
}

.brand-product-game {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

.brand-shop-btn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.brand-shop-btn .btn-content {
  padding: 14px 32px;
}

@media (max-width: 768px) {
  .brands-page {
    padding: 40px 24px 80px;
  }

  .brand-card-body {
    padding: 28px 24px;
  }

  .brand-logo {
    max-width: 200px;
  }

  .brand-product-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .brand-product-game {
    text-align: left;
  }
}
