/* ======================================================================== */
/* Marko — Custom Cyber Neon Theme (overrides Bootstrap + template vars) */
/* ======================================================================== */

:root {
  /* Theme palette */
  --primary-color: #a855f7;
  --secondary-color: #ec4899;
  --bg-dark: #030007;
  --card-bg: #0d0618;
  --border-color: rgba(168, 85, 247, 0.2);
  --text-muted: #8b7aa0;

  /* Map into Marko template variables */
  --primary: #e8e0f0;
  --secondary: var(--bg-dark);
  --text-color: var(--text-muted);
  --text-color-2: var(--bg-dark);
  --accent-color: var(--primary-color);
  --accent-color-2: #ffffff;
  --accent-color-3: var(--card-bg);
  --accent-color-4: #120a1f;
  --accent-color-5: rgba(3, 0, 7, 0.49);
  --accent-color-6: rgba(168, 85, 247, 0.52);
  --accent-transparent-2: rgba(3, 0, 7, 0.45);
  --global-font: "Rajdhani", sans-serif;
  --box-shadow-top-left: -3px -3px 7px 0px rgba(168, 85, 247, 0.44);
  --box-shadow-bottom-right: 3px 3px 7px 0px rgba(168, 85, 247, 0.44);
  --box-shadow-top-left-wide: -3px -3px 10px 0px rgba(168, 85, 247, 0.44);
  --box-shadow-bottom-right-wide: 3px 3px 10px 0px rgba(168, 85, 247, 0.44);

  /* Bootstrap 5 */
  --bs-primary: #a855f7;
  --bs-primary-rgb: 168, 85, 247;
  --bs-secondary: #ec4899;
  --bs-secondary-rgb: 236, 72, 153;
  --bs-body-bg: #030007;
  --bs-body-color: #e8e0f0;
  --bs-border-color: rgba(168, 85, 247, 0.2);
  --bs-link-color: #a855f7;
  --bs-link-hover-color: #ec4899;
  --bs-focus-ring-color: rgba(168, 85, 247, 0.35);
}

/* Typography */
body {
  background-color: var(--bg-dark) !important;
  font-family: "Rajdhani", var(--global-font), sans-serif;
  font-weight: 400;
  color: var(--primary);
  padding-top: 88px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-heading,
.title-heading-banner,
.font-1,
.font-2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

p,
li,
span,
a,
label,
input,
textarea,
select,
button,
.nav-link,
.btn,
.meta-data {
  font-family: "Rajdhani", var(--global-font), sans-serif;
}

.text-muted,
.meta-data {
  color: var(--text-muted) !important;
}

/* Surfaces */
.card,
.card-expertise,
.card-partner,
.card-pricing,
.card-testimonial,
.card-blog,
.card-case-studies,
.card-team,
.card-service,
.navbar-container,
.sidebar,
#newsletterForm {
  background-color: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}

/* Neon utilities */
.neon-text {
  color: var(--primary-color);
  text-shadow:
    0 0 7px rgba(168, 85, 247, 0.85),
    0 0 14px rgba(168, 85, 247, 0.55),
    0 0 28px rgba(236, 72, 153, 0.35);
}

.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff !important;
  border: 1px solid var(--primary-color);
  border-radius: var(--global-border-radius, 25px);
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.5),
    0 0 22px rgba(236, 72, 153, 0.25),
    inset 0 0 12px rgba(168, 85, 247, 0.12);
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.neon-btn:hover,
.neon-btn:focus {
  color: #ffffff !important;
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.85),
    0 0 32px rgba(236, 72, 153, 0.45),
    inset 0 0 16px rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.neon-border {
  border: 1px solid var(--border-color) !important;
  box-shadow:
    0 0 8px rgba(168, 85, 247, 0.28),
    inset 0 0 10px rgba(168, 85, 247, 0.06);
}

/* Bootstrap primary overrides */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #a855f7;
  --bs-btn-border-color: #a855f7;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #9333ea;
  --bs-btn-hover-border-color: #9333ea;
  --bs-btn-focus-shadow-rgb: 168, 85, 247;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #7e22ce;
  --bs-btn-active-border-color: #7e22ce;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #a855f7;
  --bs-btn-disabled-border-color: #a855f7;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.55);
}

.btn-outline-primary {
  --bs-btn-color: #a855f7;
  --bs-btn-border-color: #a855f7;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a855f7;
  --bs-btn-hover-border-color: #a855f7;
  --bs-btn-active-bg: #7e22ce;
  --bs-btn-active-border-color: #7e22ce;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.link-primary {
  color: var(--primary-color) !important;
}

.link-primary:hover,
.link-primary:focus {
  color: var(--secondary-color) !important;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(168, 85, 247, 0.25);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
}

.pagination .page-link {
  color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.progress-bar {
  background-color: var(--primary-color);
}

.badge.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Accent buttons aligned with theme */
.btn-accent {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-accent:hover {
  background-color: #9333ea;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.5);
}

.accent-color {
  color: var(--primary-color) !important;
}

/* Light mode — keep neon palette readable */
body.lightmode {
  --primary: #1a0a2e;
  --secondary: #f8f4ff;
  --text-color: #5c4d75;
  --accent-color: var(--primary-color);
  --accent-color-3: #ede4ff;
  --accent-color-4: #f5f0ff;
}

body.lightmode {
  background-color: #f8f4ff !important;
}

/* ======================================================================== */
/* Header — The Most Expensive Pixel (fixed glass navbar) */
/* ======================================================================== */

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.header-area .navbar-area {
  background: rgba(3, 0, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.header-area .container {
  max-width: 1320px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.header-area .navbar {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Logo */
.header-area .navbar-brand.site-logo {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.header-area .logo-text {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(0.65rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-area .logo-text-white {
  color: #ffffff;
}

.header-area .logo-text-purple {
  color: var(--primary-color);
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.45);
}

/* Nav links */
.header-area .navbar-nav {
  align-items: center;
  gap: 0.25rem;
}

.header-area .navbar-nav .nav-item {
  list-style: none;
}

.header-area .navbar-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  background: transparent;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.header-area .navbar-nav a:hover,
.header-area .navbar-nav a:focus {
  color: #e8e0f0;
  text-shadow: none;
}

.header-area .navbar-nav a.active {
  color: #9933ff;
  text-shadow: 0 0 12px rgba(153, 51, 255, 0.5);
}

/* Collapse layout: links + BUY NOW */
.header-area .navbar-collapse {
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 992px) {
  .header-area .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .header-area .navbar-nav {
    flex-direction: row;
    margin-right: 1rem;
  }
}

.header-area .header-buy-btn {
  flex-shrink: 0;
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Hamburger */
.header-area .navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 8px;
  background: rgba(13, 6, 24, 0.6);
  box-shadow: none;
  order: 2;
}

.header-area .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
  outline: none;
}

.header-area .toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 992px) {
  .header-area .navbar-toggler {
    display: none;
  }
}

/* Mobile menu panel */
@media (max-width: 991.98px) {
  body {
    padding-top: 76px;
  }

  .header-area .navbar-collapse {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(13, 6, 24, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
  }

  .header-area .navbar-collapse.show,
  .header-area .navbar-collapse.collapsing {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header-area .navbar-nav {
    width: 100%;
    margin: 0 0 1rem 0 !important;
  }

  .header-area .navbar-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  }

  .header-area .navbar-nav .nav-item:last-child a {
    border-bottom: none;
  }

  .header-area .header-buy-btn {
    width: 100%;
    text-align: center;
  }
}

/* Override legacy Marko navbar wrapper when header loads inside #header */
#header .header-area {
  margin: 0;
}

#header .navbar-wrapper {
  display: none;
}

/* ======================================================================== */
/* Template scroll animations (Animate.css + IntersectionObserver) */
/* ======================================================================== */

/* Stay visible after animation runs (fixes refresh → flash → disappear) */
.animate-box.is-visible {
  opacity: 1 !important;
}

.hero-section .current-price-buy-btn.animate-box {
  display: inline-flex;
}

/* Share buttons: never hide (animate-box on each btn broke laptop layout) */
.hero-section .current-price-share .share-btn {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: auto;
}

.hero-section .share-buttons-stack {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section .animate-box,
  .ownership-history-section .animate-box,
  .cta-banner-section .animate-box,
  .site-footer .animate-box {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ======================================================================== */
/* Hero landing — single column (reference layout) */
/* ======================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  padding: 2.5rem 1.5rem 5rem;
  background-color: #000000;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000000;
  background-image:
    linear-gradient(rgba(153, 51, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 51, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 85%);
  pointer-events: none;
}

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

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-header {
  width: 100%;
  margin-bottom: 0.5rem;
}

.hero-header h1 {
  margin-bottom: 1.25rem;
}

.current-price-label {
  margin: 0 0 1rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888888;
}

.hero-price-block {
  width: 100%;
  max-width: 640px;
  margin-bottom: 0;
}

.hero-price-block .current-price-label {
  margin-bottom: 1.25rem;
}

.hero-price-block .current-price-value {
  margin-bottom: 1rem;
}

.hero-price-block .current-price-next {
  margin-bottom: 2.25rem;
}

.current-price-next .fa-circle-info {
  margin-left: 6px;
  font-size: 13px;
  color: #888888;
  vertical-align: middle;
  opacity: 0.85;
}

.current-price-value {
  margin: 0 0 1.25rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #9933ff 0%, #cc44ff 42%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(204, 68, 255, 0.35));
}

.current-price-next {
  margin: 0 0 2.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #888888;
}

.current-price-next .next-price-highlight {
  color: #ec4899;
  font-weight: 600;
}

.current-price-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  height: 58px;
  margin: 0 auto;
  padding: 0 2rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(90deg, #9933ff 0%, #cc44ff 50%, #ec4899 100%);
  border: none;
  border-radius: 10px;
  box-shadow:
    0 0 30px rgba(153, 51, 255, 0.55),
    0 0 60px rgba(236, 72, 153, 0.2);
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.current-price-buy-btn .buy-pixel-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: #1a1028;
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 3px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
}

.current-price-buy-btn:hover,
.current-price-buy-btn:focus {
  color: #ffffff;
  filter: brightness(1.1);
  transform: scale(1.03);
  box-shadow:
    0 0 40px rgba(153, 51, 255, 0.7),
    0 0 70px rgba(236, 72, 153, 0.35);
}

.current-price-secure {
  margin: 14px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}

/* Share This — reference: vertical full-width stack */
.current-price-share {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 4.5rem auto 0;
  padding: 3.5rem 0 0;
}

.current-price-share::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 120%;
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center top,
    rgba(153, 51, 255, 0.18) 0%,
    rgba(236, 72, 153, 0.06) 40%,
    transparent 72%
  );
  pointer-events: none;
}

.current-price-share-label {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888888;
}

.share-buttons-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 1.25rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #dddddd;
  text-decoration: none;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(153, 51, 255, 0.22);
  border-radius: 12px;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}

/* Tablet + laptop: 3 buttons row + Copy Link centered below (reference) */
@media (min-width: 768px) {
  .hero-stack {
    max-width: 720px;
  }

  .hero-section .current-price-share,
  .current-price-share {
    display: block;
    visibility: visible;
    max-width: 720px;
    padding-top: 3.5rem;
  }

  .share-buttons-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 14px;
    align-items: stretch;
    width: 100%;
  }

  .share-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 14px 0.75rem;
    font-size: 15px;
    white-space: nowrap;
  }

  .share-btn--copy {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 280px;
    margin-left: 0;
    margin-right: 0;
    white-space: nowrap;
  }

  .hero-section {
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .share-buttons-stack {
    gap: 14px 16px;
  }

  .share-btn {
    padding: 15px 1rem;
    font-size: 16px;
  }

  .share-btn--copy {
    max-width: 300px;
  }
}

.share-btn:hover,
.share-btn:focus {
  color: #ffffff;
  background: #1a1a1a;
  border-color: rgba(153, 51, 255, 0.45);
  filter: brightness(1.08);
  transform: scale(1.02);
}

.share-btn i {
  flex-shrink: 0;
  width: 20px;
  font-size: 18px;
  text-align: center;
}

.share-btn--twitter i {
  color: #f4212e;
}

.share-btn--whatsapp i {
  color: #25d366;
}

.share-btn--facebook i {
  color: #1877f2;
}

.share-btn--copy i {
  color: #cccccc;
}

@media (max-width: 767.98px) {
  .current-price-value {
    font-size: 48px;
  }

  .current-price-buy-btn {
    width: 90%;
    max-width: none;
  }

  .hero-section .current-price-share {
    max-width: 100%;
    padding-top: 2.5rem;
  }

  .share-btn {
    max-width: 100%;
    padding: 16px 1.25rem;
    font-size: 15px;
  }
}

/* Current Owner block */
.current-owner-label {
  margin: 0 0 1.25rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888888;
}

/* Owner section — grid + pixel glow behind card */
.hero-owner-block {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem 1.25rem 2rem;
  overflow: hidden;
  border-radius: 16px;
}

.hero-owner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000000;
  pointer-events: none;
}

.hero-owner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 51, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 51, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.85;
}

.hero-owner-bg .hero-pixel-wrap--bg {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.hero-owner-bg .the-pixel--bg {
  pointer-events: auto;
  cursor: pointer;
}

.hero-owner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-owner-block .current-owner-label {
  position: relative;
  z-index: 2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-owner-block .owner-card {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  background: rgba(13, 6, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 40px rgba(153, 51, 255, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ======================================================================== */
/* Hero — pixel, typography, spacing */
/* ======================================================================== */

@keyframes hero-pixel-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes hero-ring-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.85;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

@keyframes hero-glow-drift {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -48%) scale(1.05);
  }
}

.hero-header h1,
.hero-stack h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.hero-header h1 span,
.hero-stack h1 span {
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-description-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  padding: 0.25rem 0;
}

.hero-description-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 120%;
  height: 160%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(153, 51, 255, 0.1) 0%,
    rgba(236, 72, 153, 0.04) 40%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-description {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #9a8fad;
  text-align: center;
}

.hero-pixel-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.pixel-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pixel-square-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(153, 51, 255, 0.55) 0%,
    rgba(236, 72, 153, 0.25) 45%,
    transparent 72%
  );
  filter: blur(18px);
  border-radius: 4px;
  pointer-events: none;
}

.pixel-rings .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.45);
  transform: translate(-50%, -50%);
  animation: hero-ring-pulse 3s ease-out infinite;
}

.pixel-rings .ring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.pixel-rings .ring-2 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
  border-color: rgba(236, 72, 153, 0.35);
}

.pixel-rings .ring-3 {
  width: 280px;
  height: 280px;
  animation-delay: 2s;
}

.the-pixel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 1px;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 50px rgba(153, 51, 255, 0.85),
    0 0 90px rgba(236, 72, 153, 0.45);
  animation: hero-pixel-float 3s ease-in-out infinite;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.the-pixel:hover,
.the-pixel:focus {
  outline: none;
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow:
    0 0 18px rgba(168, 85, 247, 1),
    0 0 36px rgba(236, 72, 153, 0.8),
    0 0 60px rgba(168, 85, 247, 0.5);
}

/* Owner card */
.owner-card {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: var(--card-bg);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 14px;
  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.15),
    inset 0 0 20px rgba(168, 85, 247, 0.04);
}

.owner-card .owner-avatar {
  flex-shrink: 0;
  margin-right: 30px;
}

.owner-card .owner-photo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid #9933ff;
  box-shadow:
    0 0 16px rgba(153, 51, 255, 0.55),
    0 0 28px rgba(153, 51, 255, 0.25);
  background-color: #000000;
}

.owner-card .owner-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.owner-card .owner-name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

.owner-card .owner-verified {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.owner-card .owner-verified i {
  font-size: 20px;
  color: #9933ff;
}

.owner-card .owner-title {
  margin: 4px 0 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #888888;
}

.owner-card .owner-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #9933ff;
  text-decoration: none;
  transition: filter 0.2s ease, text-decoration 0.2s ease;
}

.owner-card .owner-social:hover {
  color: #9933ff;
  text-decoration: underline;
  filter: brightness(1.25);
}

.owner-card .owner-social i {
  font-size: 12px;
}

.owner-quote {
  margin: 12px 0 0;
  padding: 12px 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  color: #cccccc;
  text-align: left;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
}

.hero-section .current-price-share {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px;
  margin: 4rem auto 0;
}

@media (min-width: 768px) {
  .hero-section .current-price-share {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 1.25rem 4rem;
  }

  .hero-owner-block {
    margin-bottom: 2rem;
    padding: 2rem 1rem 1.5rem;
  }

  .hero-owner-bg .hero-pixel-wrap--bg {
    width: 260px;
    height: 260px;
    top: 38%;
  }

  .hero-owner-block .owner-card {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1.25rem;
  }

  .hero-owner-block .owner-avatar {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .hero-owner-block .owner-info {
    text-align: center;
    width: 100%;
  }

  .hero-owner-block .owner-name {
    justify-content: center;
    font-size: 1.65rem;
  }

  .hero-owner-block .owner-social {
    justify-content: center;
    word-break: break-all;
  }

  .hero-owner-block .owner-quote {
    text-align: center;
  }

  .hero-pixel-wrap {
    width: 240px;
    height: 240px;
  }

  .pixel-rings {
    width: 240px;
    height: 240px;
  }
}

/* Copy link toast */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

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

/* ======================================================================== */
/* Ownership History */
/* ======================================================================== */

.ownership-history-section {
  width: 100%;
  padding: 80px 60px;
  background-color: #0d0d1a;
}

.ownership-history-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.ownership-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ownership-history-title {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

.ownership-history-view-all {
  flex-shrink: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #9933ff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: filter 0.2s ease, color 0.2s ease;
}

.ownership-history-view-all:hover {
  color: #b366ff;
  filter: brightness(1.2);
}

.ownership-history-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.ownership-history-table-col {
  flex: 0 1 65%;
  min-width: 0;
}

.ownership-history-stats-col {
  flex: 0 1 35%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ownership-table-wrap {
  width: 100%;
  padding: 8px;
  overflow-x: auto;
  background-color: #13132a;
  border-radius: 12px;
}

.ownership-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Rajdhani", sans-serif;
  background-color: #13132a;
}

.ownership-table thead th {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  color: #666666;
  background: transparent;
  border-bottom: 1px solid #2a2a3a;
  white-space: nowrap;
}

.ownership-table tbody td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid #1a1a2e;
}

.ownership-table tbody tr:last-child td {
  border-bottom: none;
}

.ownership-table tbody tr:hover td {
  background: rgba(153, 51, 255, 0.05);
}

.ownership-table .col-num {
  width: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.ownership-table .col-owner {
  min-width: 180px;
}

.owner-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.owner-cell-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2a2a3a;
  overflow: hidden;
}

.owner-cell-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.owner-cell-avatar .fa-user {
  font-size: 14px;
  color: #9933ff;
}

.owner-cell-name {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.owner-cell-name .owner-check {
  margin-left: 6px;
  font-size: 14px;
  color: #9933ff;
}

.ownership-table .col-price {
  font-size: 15px;
  font-weight: 700;
  color: #9933ff;
  white-space: nowrap;
}

.ownership-table .col-price--strike {
  text-decoration: line-through;
  text-decoration-color: rgba(153, 51, 255, 0.65);
}

.ownership-table .col-date,
.ownership-table .col-duration {
  font-size: 13px;
  font-weight: 500;
  color: #888888;
  white-space: nowrap;
}

.ownership-stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background-color: #13132a;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.ownership-stat-card--last {
  margin-bottom: 0;
}

.ownership-stat-card:hover {
  box-shadow: 0 0 24px rgba(153, 51, 255, 0.08);
}

.ownership-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(153, 51, 255, 0.15);
  border-radius: 8px;
}

.ownership-stat-icon i {
  font-size: 18px;
  color: #9933ff;
}

.ownership-stat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ownership-stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
}

.ownership-stat-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
}

.ownership-stat-value--purple {
  color: #9933ff;
}

.ownership-stat-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #666666;
  line-height: 1.35;
}

/* ======================================================================== */
/* CTA Banner */
/* ======================================================================== */

.cta-banner-section {
  width: 100%;
  padding: 50px 80px;
  background-color: #0d0d1a;
  border-top: 1px solid #2a2a3a;
  border-bottom: 1px solid #2a2a3a;
}

.cta-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.cta-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.cta-banner-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 24px;
  padding: 18px;
  background: rgba(153, 51, 255, 0.15);
  border-radius: 12px;
}

.cta-banner-icon-box .fa-trophy {
  font-size: 36px;
  color: #9933ff;
  line-height: 1;
}

.cta-banner-text-block {
  min-width: 0;
}

.cta-banner-title {
  margin: 0;
  max-width: 400px;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.cta-banner-line {
  margin: 0;
  max-width: 400px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: #888888;
}

.cta-banner-line:first-of-type {
  margin-top: 10px;
}

.cta-banner-line + .cta-banner-line {
  margin-top: 4px;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 18px 36px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  border: 2px solid #9933ff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-banner-btn:hover,
.cta-banner-btn:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.5);
  transform: scale(1.03);
}

/* ======================================================================== */
/* Site Footer */
/* ======================================================================== */

.site-footer {
  width: 100%;
  padding: 28px 80px;
  background-color: #000000;
}

.site-footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.site-footer-copy {
  margin: 0;
  flex-shrink: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
}

.site-footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer-links a {
  margin: 0 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-links a:hover {
  color: #9933ff;
}

.site-footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  color: #444444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-social a:first-child {
  margin-left: 0;
}

.site-footer-social a i {
  font-size: 20px;
  line-height: 1;
}

.site-footer-social a:hover {
  color: #ffffff;
}

/* Home: footer directly below CTA — skip duplicate loaded footer */
.page-home #footer {
  display: none;
}

/* Home: hide legacy template sections after footer */
.page-home main .site-footer ~ * {
  display: none !important;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 24px;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .site-footer-links {
    margin-top: 12px;
  }

  .site-footer-links a {
    margin: 0 12px;
  }

  .site-footer-social {
    margin-top: 12px;
  }

  .site-footer-social a {
    margin-left: 12px;
  }

  .site-footer-social a:first-child {
    margin-left: 0;
  }

  .cta-banner-section {
    padding: 40px 24px;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-banner-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-banner-icon-box {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .cta-banner-text-block {
    margin-bottom: 24px;
  }

  .cta-banner-title,
  .cta-banner-line {
    max-width: none;
  }

  .cta-banner-btn {
    width: 90%;
    margin: 0 auto;
  }

  .ownership-history-section {
    padding: 60px 24px;
  }

  .ownership-history-columns {
    flex-direction: column;
  }

  .ownership-history-table-col {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .ownership-history-stats-col {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ownership-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ownership-stat-card {
    margin-bottom: 0;
  }

  .ownership-stat-card--last {
    margin-bottom: 0;
  }

  .ownership-stat-value,
  .ownership-stat-value--purple {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .ownership-history-section {
    padding: 48px 20px;
  }

  .ownership-history-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ownership-history-stats-col {
    grid-template-columns: 1fr;
  }

  .ownership-table thead th,
  .ownership-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ======================================================================== */
/* Buy The Pixel page */
/* ======================================================================== */

.page-buy {
  background-color: #0a0a0a;
}

.page-buy main {
  background-color: #0a0a0a;
}

.buy-page-section {
  width: 100%;
  padding: 100px 0;
  background-color: #0a0a0a;
}

.buy-page-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.buy-page-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.buy-page-label {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9933ff;
}

.buy-page-title {
  margin: 12px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: none;
}

.buy-page-subtext {
  margin: 12px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #888888;
}

.buy-payment-card {
  width: 100%;
  max-width: 560px;
  margin: 50px auto;
  padding: 48px;
  text-align: center;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(153, 51, 255, 0.1);
}

.buy-pixel-box {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(153, 51, 255, 0.6);
}

.buy-card-price-label {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666666;
}

.buy-card-price-value {
  margin: 8px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  color: #9933ff;
}

.buy-card-price-next {
  margin: 8px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666666;
}

.buy-card-divider {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid #2a2a3a;
  opacity: 1;
}

.buy-payment-form {
  width: 100%;
  text-align: left;
}

.buy-form-group {
  margin-bottom: 20px;
}

.buy-form-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
}

.buy-form-input,
.buy-form-textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  background-color: #0d0d1a;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.buy-form-input::placeholder,
.buy-form-textarea::placeholder {
  color: #555555;
}

.buy-form-input:focus,
.buy-form-textarea:focus {
  outline: none;
  border-color: #9933ff;
}

.buy-form-textarea {
  height: 90px;
  min-height: 90px;
  resize: none;
}

.buy-proceed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  padding: 18px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.4);
  transition: all 0.3s ease;
}

.buy-proceed-btn:hover,
.buy-proceed-btn:focus {
  color: #ffffff;
  filter: brightness(1.15);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.4);
}

.buy-card-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #444444;
}

.buy-card-secure i {
  font-size: 11px;
  color: #444444;
}

.buy-info-boxes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.buy-info-box {
  flex: 1 1 0;
  min-width: 0;
  padding: 20px 16px;
  text-align: center;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 10px;
}

.buy-info-icon {
  display: block;
  margin: 0 auto 10px;
  font-size: 22px;
  line-height: 1;
  color: #9933ff;
}

.buy-info-title {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

.buy-info-sub {
  margin: 6px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #666666;
}

@media (max-width: 768px) {
  .buy-page-section {
    padding: 80px 0;
  }

  .buy-page-section .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .buy-page-title {
    font-size: 32px;
  }

  .buy-payment-card {
    margin: 40px auto;
    padding: 28px 20px;
  }

  .buy-card-price-value {
    font-size: 38px;
  }

  .buy-info-boxes {
    flex-direction: column;
    max-width: 560px;
    gap: 12px;
  }

  .buy-info-box {
    flex: none;
    width: 100%;
  }
}

/* ======================================================================== */
/* History page */
/* ======================================================================== */

.page-history {
  background-color: #0a0a0a;
}

.page-history main {
  background-color: #0a0a0a;
}

.history-page-section {
  width: 100%;
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.history-page-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.history-page-header {
  padding-top: 80px;
  margin-bottom: 0;
  text-align: center;
}

.history-page-label {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9933ff;
}

.history-page-title {
  margin: 12px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
}

.history-page-subtext {
  margin: 12px auto 0;
  max-width: 640px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #888888;
}

.history-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}

.history-search-input {
  width: 300px;
  max-width: 100%;
  padding: 14px 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.history-search-input::placeholder {
  color: #555555;
}

.history-search-input:focus {
  outline: none;
  border-color: #9933ff;
}

.history-sort-select {
  min-width: 200px;
  padding: 14px 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.history-sort-select:focus {
  outline: none;
  border-color: #9933ff;
}

.history-sort-select option {
  background-color: #13132a;
  color: #ffffff;
}

.history-stats-bar {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 900px;
  margin: 32px auto;
}

.history-stat-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 20px 24px;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 12px;
}

.history-stat-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(153, 51, 255, 0.12);
  border-radius: 10px;
}

.history-stat-icon i {
  font-size: 20px;
  color: #9933ff;
}

.history-stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.history-stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
}

.history-stat-value {
  margin-top: 4px;
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #9933ff;
}

.history-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
}

.history-table-wrap .ownership-table thead th {
  padding: 16px;
}

.history-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 32px;
  font-family: "Rajdhani", sans-serif;
}

.history-table tbody tr.is-row-hidden {
  display: none;
}

.history-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 8px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.history-page-link:hover:not(:disabled):not(.is-disabled) {
  color: #ffffff;
}

.history-page-link--active {
  color: #ffffff;
  background-color: #9933ff;
}

.history-page-link:disabled,
.history-page-link.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.history-page-ellipsis {
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
}

@media (max-width: 768px) {
  .history-page-section {
    padding: 40px 16px 4rem;
  }

  .history-page-header {
    padding-top: 40px;
  }

  .history-page-title {
    font-size: 32px;
  }

  .history-toolbar {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
  }

  .history-search-input {
    width: 100%;
  }

  .history-sort-select {
    width: 100%;
    min-width: 0;
  }

  .history-stats-bar {
    flex-direction: column;
    margin: 24px auto;
  }

  .history-stat-card {
    flex: none;
    width: 100%;
  }

  .history-table-wrap {
    border-radius: 12px;
  }
}

/* ======================================================================== */
/* Leaderboard page */
/* ======================================================================== */

.page-leaderboard {
  background-color: #0a0a0a;
}

.page-leaderboard main {
  background-color: #0a0a0a;
}

.leaderboard-page-section {
  width: 100%;
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.leaderboard-page-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.leaderboard-page-header {
  padding-top: 80px;
  text-align: center;
}

.leaderboard-page-label {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9933ff;
}

.leaderboard-page-title {
  margin: 12px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
}

.leaderboard-page-subtext {
  margin: 12px auto 0;
  max-width: 560px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #888888;
}

/* Stats bar */
.leaderboard-stats-bar {
  display: flex;
  flex-direction: row;
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}

.leaderboard-stat-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 20px 24px;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 12px;
}

.leaderboard-stat-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.leaderboard-stat-icon--gold {
  background: rgba(255, 215, 0, 0.12);
}

.leaderboard-stat-icon--gold i {
  font-size: 20px;
  color: #ffd700;
}

.leaderboard-stat-icon--purple {
  background: rgba(153, 51, 255, 0.12);
}

.leaderboard-stat-icon--purple i {
  font-size: 20px;
  color: #9933ff;
}

.leaderboard-stat-icon--fire {
  background: rgba(255, 102, 51, 0.12);
}

.leaderboard-stat-icon--fire i {
  font-size: 20px;
  color: #ff6633;
}

.leaderboard-stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  text-align: left;
}

.leaderboard-stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
}

.leaderboard-stat-value {
  margin-top: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.leaderboard-stat-sub {
  margin-top: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #9933ff;
}

/* Podium */
.leaderboard-podium {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
  margin: 60px auto 0;
}

.podium-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 220px;
  padding: 32px 24px;
  text-align: center;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
}

.podium-card--first {
  order: 2;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.podium-card--second {
  order: 1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.podium-card--third {
  order: 3;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.podium-crown {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.podium-card--first .podium-crown {
  font-size: 36px;
}

.podium-crown--gold {
  color: #ffd700;
}

.podium-crown--silver {
  color: #c0c0c0;
}

.podium-crown--bronze {
  color: #cd7f32;
}

.podium-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2a2a3a;
  overflow: hidden;
}

.podium-avatar--gold {
  width: 80px;
  height: 80px;
  border: 3px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.podium-avatar--gold img,
.podium-avatar--silver img,
.podium-avatar--bronze img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.podium-avatar--silver {
  width: 64px;
  height: 64px;
  border: 3px solid #c0c0c0;
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.podium-avatar--bronze {
  width: 64px;
  height: 64px;
  border: 3px solid #cd7f32;
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.podium-avatar--silver i,
.podium-avatar--bronze i {
  font-size: 24px;
  color: #9933ff;
}

.podium-rank-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 20px;
}

.podium-rank-badge--gold {
  color: #000000;
  background-color: #ffd700;
}

.podium-rank-badge--silver {
  color: #000000;
  background-color: #c0c0c0;
}

.podium-rank-badge--bronze {
  color: #ffffff;
  background-color: #cd7f32;
}

.podium-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.podium-card--second .podium-name,
.podium-card--third .podium-name {
  font-size: 16px;
}

.podium-check {
  font-size: 16px;
  color: #9933ff;
}

.podium-price {
  margin: 8px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.podium-card--first .podium-price {
  font-size: 22px;
}

.podium-price--gold {
  color: #ffd700;
}

.podium-price--silver {
  color: #c0c0c0;
}

.podium-price--bronze {
  color: #cd7f32;
}

.podium-price-label {
  margin: 10px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666666;
}

/* Leaderboard table */
.leaderboard-table-wrap {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
}

.leaderboard-table-wrap .ownership-table thead th {
  padding: 16px;
}

.leaderboard-table .col-rank {
  width: 56px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  white-space: nowrap;
}

.leaderboard-table .col-rank--medal {
  font-size: 20px;
  line-height: 1;
}

.leaderboard-table .col-price--gold {
  font-weight: 700;
  color: #ffd700;
}

.leaderboard-table .col-price--silver {
  font-weight: 700;
  color: #c0c0c0;
}

.leaderboard-table .col-price--bronze {
  font-weight: 700;
  color: #cd7f32;
}

.leaderboard-table .col-badge {
  white-space: nowrap;
}

.leaderboard-badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9933ff;
  background: rgba(153, 51, 255, 0.15);
  border: 1px solid #9933ff;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .leaderboard-page-section {
    padding: 40px 16px 4rem;
  }

  .leaderboard-page-header {
    padding-top: 40px;
  }

  .leaderboard-page-title {
    font-size: 32px;
  }

  .leaderboard-stats-bar {
    flex-direction: column;
    margin-top: 32px;
  }

  .leaderboard-stat-card {
    flex: none;
    width: 100%;
  }

  .leaderboard-podium {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .podium-card,
  .podium-card--first,
  .podium-card--second,
  .podium-card--third {
    order: unset;
    width: 100%;
    max-width: 320px;
    min-height: auto;
  }

  .leaderboard-table-wrap {
    margin-top: 32px;
    border-radius: 12px;
  }
}

/* ======================================================================== */
/* About page */
/* ======================================================================== */

@keyframes about-pixel-pulse {
  0% {
    box-shadow:
      0 0 60px rgba(153, 51, 255, 0.8),
      0 0 120px rgba(153, 51, 255, 0.4);
  }
  50% {
    box-shadow:
      0 0 100px rgba(153, 51, 255, 1),
      0 0 160px rgba(153, 51, 255, 0.6);
  }
  100% {
    box-shadow:
      0 0 60px rgba(153, 51, 255, 0.8),
      0 0 120px rgba(153, 51, 255, 0.4);
  }
}

.page-about {
  background-color: #0a0a0a;
}

.page-about main {
  background-color: #0a0a0a;
}

.about-page-section {
  width: 100%;
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.about-page-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-page-header {
  padding-top: 80px;
  text-align: center;
}

.about-page-label {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9933ff;
}

.about-page-title {
  margin: 12px 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
}

.about-page-subtext {
  margin: 12px auto 0;
  max-width: 520px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #888888;
}

.about-pixel-hero {
  width: 100px;
  height: 100px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border-radius: 12px;
  box-shadow:
    0 0 60px rgba(153, 51, 255, 0.8),
    0 0 120px rgba(153, 51, 255, 0.4);
  animation: about-pixel-pulse 2s infinite ease-in-out;
}

.about-what-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.about-section-heading {
  margin: 0 0 24px;
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
}

.about-body-text {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  color: #888888;
}

.about-body-text--spaced {
  margin-top: 20px;
}

.about-how-section {
  max-width: 900px;
  margin: 60px auto 0;
}

.about-how-section .about-section-heading {
  margin-bottom: 40px;
}

.about-steps-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.about-step-card {
  flex: 1 1 0;
  min-width: 180px;
  padding: 32px 24px;
  text-align: center;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-step-card:hover {
  border-color: #9933ff;
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.1);
}

.about-step-num {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #9933ff;
}

.about-step-icon {
  display: block;
  margin: 16px auto 0;
  font-size: 28px;
  color: #9933ff;
}

.about-step-title {
  margin: 14px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.about-step-text {
  margin: 8px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #888888;
}

.about-why-section {
  max-width: 900px;
  margin: 60px auto 0;
}

.about-why-section .about-section-heading {
  margin-bottom: 40px;
}

.about-why-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.about-why-card {
  flex: 1 1 0;
  min-width: 220px;
  padding: 36px 28px;
  text-align: center;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-why-card:hover {
  border-color: #9933ff;
}

.about-why-icon {
  display: block;
  font-size: 32px;
  color: #9933ff;
}

.about-why-title {
  margin: 16px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.about-why-text {
  margin: 10px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #888888;
}

.about-faq-section {
  max-width: 700px;
  margin: 60px auto 0;
}

.about-faq-section .about-section-heading {
  margin-bottom: 40px;
}

.about-faq-list {
  width: 100%;
}

.about-faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  background-color: #13132a;
  border: 1px solid #2a2a3a;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.about-faq-item.is-open {
  border-color: #9933ff;
}

.about-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.about-faq-question:hover {
  color: #9933ff;
}

.about-faq-question span {
  flex: 1;
}

.about-faq-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: #9933ff;
  transition: transform 0.3s ease;
}

.about-faq-item.is-open .about-faq-arrow {
  transform: rotate(180deg);
}

.about-faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.about-faq-item.is-open .about-faq-answer {
  display: block;
}

.about-faq-answer p {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #888888;
}

.about-cta-section {
  max-width: 600px;
  margin: 60px auto 0;
  text-align: center;
}

.about-cta-heading {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
}

.about-cta-subtext {
  margin: 12px 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #888888;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 18px 48px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(153, 51, 255, 0.5);
  transition: all 0.3s ease;
}

.about-cta-btn:hover,
.about-cta-btn:focus {
  color: #ffffff;
  filter: brightness(1.15);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(153, 51, 255, 0.6);
}

@media (max-width: 991px) and (min-width: 769px) {
  .about-steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-step-card {
    flex: none;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .about-page-section {
    padding: 40px 16px 4rem;
  }

  .about-page-header {
    padding-top: 40px;
  }

  .about-page-title {
    font-size: 32px;
  }

  .about-pixel-hero {
    width: 70px;
    height: 70px;
    margin-top: 40px;
  }

  .about-what-section {
    padding: 40px 0;
  }

  .about-section-heading {
    font-size: 26px;
  }

  .about-how-section,
  .about-why-section,
  .about-faq-section,
  .about-cta-section {
    margin-top: 48px;
  }

  .about-steps-row {
    display: flex;
    flex-direction: column;
  }

  .about-step-card {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .about-why-row {
    flex-direction: column;
  }

  .about-why-card {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .about-faq-section {
    max-width: 100%;
  }

  .about-cta-heading {
    font-size: 28px;
  }

  .about-cta-btn {
    width: 100%;
    max-width: 320px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

