/* ======================================================================== */
/* 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: none;
}

.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: none;
}

/* No outer glow / neumorphic shadow on buttons */
.btn,
.btn-accent,
.btn-primary,
.neon-btn,
.current-price-buy-btn,
.pixel-price-section .btn,
.pixel-price-section .btn-accent,
.pixel-price-section .pixel-buy-btn,
.share-btn,
.header-area .header-buy-btn {
  box-shadow: none !important;
}

.btn:hover,
.btn:focus,
.btn:focus-visible,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.neon-btn:hover,
.neon-btn:focus,
.current-price-buy-btn:hover,
.current-price-buy-btn:focus,
.pixel-price-section .pixel-buy-btn:hover,
.pixel-price-section .pixel-buy-btn:focus,
.share-btn:hover,
.share-btn:focus {
  box-shadow: none !important;
}

.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 — Marko layout + pixel branding */
/* ======================================================================== */

.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.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(153, 51, 255, 0.15);
}

/* Marko-style header */
.header-area--marko .navbar-marko {
  padding: 0.85rem 0;
}

.header-area--marko .site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: 1rem;
}

.header-area--marko .header-site-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(153, 51, 255, 0.5));
}

.header-area--marko .header-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.header-area--marko .header-logo-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: none;
}

.header-area--marko .header-logo-title-accent {
  color: #9933ff;
}

.header-area--marko .header-logo-tagline {
  margin-top: 2px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b7aa0;
}

.header-area--marko .navbar-nav {
  gap: 0.15rem;
}

.header-area--marko .navbar-nav .nav-link {
  padding: 0.5rem 0.9rem !important;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #c4b8d4 !important;
}

.header-area--marko .navbar-nav .nav-link:hover,
.header-area--marko .navbar-nav .nav-link:focus {
  color: #ffffff !important;
}

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

.header-area--marko .navbar-action-container {
  width: auto;
  flex-shrink: 0;
}

.header-area--marko .navbar-action-button {
  gap: 0.65rem;
  padding: 0;
}

.header-area--marko .navbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 1.1rem;
  color: #e8e0f0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(153, 51, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-area--marko .navbar-icon-btn:hover {
  color: #ffffff;
  background: rgba(153, 51, 255, 0.15);
  border-color: rgba(153, 51, 255, 0.4);
}

.header-area--marko .header-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #9933ff, #cc44ff);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(153, 51, 255, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.header-area--marko .header-cta-pill:hover {
  color: #ffffff;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.header-area--marko .header-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}

@media (min-width: 1200px) {
  .header-area--marko .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
  }

  .header-area--marko .navbar-nav {
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }
}

.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:not(.header-area--marko) .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:not(.header-area--marko) .navbar-nav a:hover,
.header-area:not(.header-area--marko) .navbar-nav a:focus {
  color: #e8e0f0;
  text-shadow: none;
}

.header-area:not(.header-area--marko) .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) {
  .page-home {
    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) */
/* ======================================================================== */

/*
 * WordPress: keep page content visible. style.css sets .animate-box { opacity: 0 }
 * which hides the entire page until JS runs — show main/footer content by default.
 */
body main .animate-box,
body main .animate-box[data-animate],
body.page-legal main .animate-box,
body.page-404 main .animate-box {
  opacity: 1 !important;
  visibility: visible !important;
}

.site-footer .animate-box,
.site-footer .animate-box[data-animate] {
  opacity: 1 !important;
  visibility: visible !important;
}

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

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

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

.hero-banner-home .share-buttons-stack,
.hero-section .share-buttons-stack,
.home-below-banner .share-buttons-stack,
.pixel-price-section .share-buttons-stack {
  opacity: 1 !important;
  visibility: visible !important;
}

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

/* ======================================================================== */
/* Home banner — Marko template layout */
/* ======================================================================== */

.page-home-banner.section-banner {
  padding: 0 30px 0 30px;
  margin-bottom: 0;
}

.page-home-banner .banner-video-container {
  padding: 3.5rem 2rem 3.75rem;
  text-align: left;
  overflow: hidden;
}

.page-home-banner .banner-video-container::before {
  top: 0;
  left: 0;
  opacity: 0.55;
  z-index: 1;
}

.page-home-banner .banner-video-bg,
.page-home-banner #banner-video-background,
.page-home-banner .banner-video-container iframe {
  opacity: 0.22;
  pointer-events: none !important;
  z-index: 0;
}

.page-home-banner .hero-container {
  position: relative;
  z-index: 2;
}

.banner-video-container {
  overflow: hidden;
}

.banner-video-container iframe {
  pointer-events: none !important;
  border: 0;
}

.page-home-banner .title-heading-banner {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
  -webkit-text-fill-color: #e8e0f0;
  background-image: linear-gradient(284deg, rgba(153, 51, 255, 0.25) 0%, #f0e8ff 100%);
}

.page-home-banner .hero-title-accent {
  background: linear-gradient(90deg, #9933ff 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home-banner .banner-heading {
  align-items: flex-end;
  gap: 2rem;
}

.page-home-banner .banner-heading--with-owner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
  width: 100%;
}

.page-home-banner .banner-owner-col {
  flex: 0 1 500px;
  width: 100%;
  max-width: 500px;
}

.page-home-banner .banner-owner-block {
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 2rem 1.25rem 1.75rem;
}

.page-home-banner .banner-owner-block .current-owner-label {
  text-align: center;
}

.page-home-banner .banner-owner-block .owner-card {
  width: 100%;
}

.page-home-banner .banner-right-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.25rem;
  min-width: 0;
  padding-top: 0.25rem;
}

.page-home-banner .banner-right-col .banner-content {
  width: 100%;
  max-width: none;
}

.page-home-banner .banner-right-col .banner-video-content {
  order: 0;
}

.page-home-banner .banner-video-content p {
  max-width: 280px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #9a8fad;
}

.page-home-banner .banner-content {
  width: 48%;
  max-width: 520px;
}

.page-home-banner .banner-content > p {
  color: #9a8fad;
  line-height: 1.55;
}

.page-home-banner .banner-reviewer .avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(153, 51, 255, 0.45);
  margin-left: -12px;
}

.page-home-banner .banner-reviewer .avatar:first-child {
  margin-left: 0;
}

.page-home-banner .banner-reviewer .detail span {
  display: block;
  font-family: "Rajdhani", sans-serif;
  color: #e8e0f0;
}

/* ======================================================================== */
/* Home — price + share (Marko pricing grid) */
/* ======================================================================== */

.pixel-price-section.home-below-banner {
  padding: 80px 20px 100px;
  background: #000000;
}

.pixel-price-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9a8fad;
}

.pixel-price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 0.5rem;
  text-align: center;
}

.pixel-price-heading {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.65rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #f5f0ff;
  text-shadow:
    0 0 48px rgba(153, 51, 255, 0.45),
    0 2px 24px rgba(0, 0, 0, 0.8);
}

.pixel-price-heading .pixel-heading-accent {
  display: inline-block;
  margin-top: 0.15em;
  background: linear-gradient(90deg, #b366ff 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(236, 72, 153, 0.4));
}

.pixel-pricing-grid {
  text-align: left;
  align-items: stretch;
}

.pixel-pricing-grid > .col {
  display: flex;
  flex-direction: column;
}

.pixel-pricing-grid .pricing-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.pixel-pricing-grid .pricing-container > .card,
.pixel-pricing-grid > .col > .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.pixel-pricing-grid .pricing-container > .pixel-card-cta {
  flex: 0 0 auto;
}

.pixel-pricing-grid .pricing-container > .pixel-share-box {
  flex: 0 0 auto;
  align-self: stretch;
}

.pixel-pricing-grid .pricing-container > .pixel-card-owners {
  flex: 1;
}

.pixel-pricing-grid .pricing-container > .pixel-card-rules {
  flex: 0 1 auto;
  align-self: stretch;
}

.pixel-price-main.pricing-highlight {
  height: auto !important;
  flex: 0 1 auto;
  align-self: stretch;
  justify-content: flex-start;
}

.pixel-card-cta .spacer,
.pixel-price-main .spacer {
  display: none !important;
}

.pixel-pricing-grid > .col:nth-child(2) {
  display: flex;
}

.pixel-price-section .card-pricing {
  gap: 0.55rem;
  padding: 1.15rem 1.2rem;
  height: auto;
}

.pixel-price-section .card-pricing h4 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.pixel-price-section .card-pricing > p:not(.pixel-price-next):not(.pixel-price-secure) {
  margin: 0;
  font-size: 0.95rem;
  color: #888888;
}

.pixel-card-cta .content h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #f0e8ff;
  text-align: left;
}

.pixel-card-cta .hero-title-accent {
  background: linear-gradient(90deg, #9933ff 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pixel-card-cta.card-pricing-title {
  flex-direction: column;
  align-items: stretch;
  padding: 1.35rem 1.25rem;
  gap: 0;
}

.pixel-card-cta .content {
  gap: 0.65rem;
  width: 100%;
  align-items: stretch;
}

.pixel-card-tagline {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: #9a8fad;
  text-align: left;
}

.pixel-cta-points {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

.pixel-cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  color: #c4b8d4;
}

.pixel-cta-points li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #9933ff;
}

.pixel-card-cta .link-wrapper {
  margin-top: 0.35rem;
  justify-content: center;
}

.pixel-mini-list {
  margin: 0;
  gap: 0;
}

.pixel-mini-list li {
  margin-bottom: 0.2rem;
  padding-left: 26px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.pixel-card-rules .d-flex.flex-row.gspace-1 {
  gap: 0.35rem !important;
  margin: 0.1rem 0 0;
}

.pixel-card-rules h4 {
  font-size: 1.15rem;
}

.pixel-card-rules .btn.btn-accent {
  margin-top: 0.15rem;
}

.pixel-card-rules h3,
.pixel-card-owners .pixel-owners-count strong {
  font-family: "Orbitron", sans-serif;
}

.pixel-card-rules h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.pixel-card-rules > p {
  margin: 0;
  font-size: 0.85rem;
}

.pixel-price-main.card-pricing.pricing-highlight {
  text-align: start;
  gap: 0;
  padding: 1.35rem 1.25rem 1.2rem;
}

.pixel-price-main .pixel-price-head {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.pixel-price-desc {
  margin: 0 0 0.55rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  color: #9a8fad;
}

.pixel-center-list {
  margin: 0 0 0.85rem;
  gap: 0;
}

.pixel-center-list li {
  margin-bottom: 0.35rem;
  padding-left: 26px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.pixel-center-list li:last-child {
  margin-bottom: 0;
}

.pixel-price-main .pixel-buy-btn {
  margin: 0 0 0.6rem;
}

.pixel-price-main .pixel-price-secure {
  margin: 0 0 0.45rem;
}

.pixel-center-list li a,
.pixel-center-list li {
  color: #b8a8c8;
}

.pixel-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(153, 51, 255, 0.25);
}

.pixel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 8px;
  min-height: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(153, 51, 255, 0.22);
  border-radius: 10px;
}

.pixel-stat-value {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: #f0e8ff;
}

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

.pixel-card-owners {
  text-align: center;
  align-items: center;
}

.pixel-owner-avatars {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.pixel-owner-avatars img {
  width: 44px;
  height: 44px;
  margin-left: -10px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(153, 51, 255, 0.5);
  box-shadow: 0 0 12px rgba(153, 51, 255, 0.25);
}

.pixel-owner-avatars img:first-child {
  margin-left: 0;
}

.pixel-owners-count {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  color: #9a8fad;
}

.pixel-owners-count strong {
  font-size: 1.15rem;
  color: #ec4899;
}

.pixel-price-main h4 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8fad;
}

.pixel-price-main .pixel-price-amount {
  margin: 0.1rem 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 8.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  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 36px rgba(204, 68, 255, 0.5));
}

.pixel-price-next {
  margin: 0.15rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #888888;
}

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

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

.pixel-price-section .pixel-buy-btn.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  align-self: stretch;
  padding: 5px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #9933ff 0%, #cc44ff 50%, #ec4899 100%);
  box-shadow: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.pixel-price-section .pixel-buy-btn .btn-title {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 12px 18px;
}

.pixel-card-rules .btn .btn-title {
  padding: 14px 20px;
}

.pixel-price-section .pixel-buy-btn .btn-title span {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.pixel-buy-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);
}

.pixel-price-section .pixel-buy-btn .icon-circle {
  background: rgba(0, 0, 0, 0.25);
}

.pixel-price-section .pixel-buy-btn .icon-circle i {
  color: #ffffff;
}

.pixel-price-section .pixel-buy-btn:hover,
.pixel-price-section .pixel-buy-btn:focus {
  filter: brightness(1.1);
  transform: scale(1.02);
  box-shadow: none;
}

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

.pixel-price-secure .fa-lock {
  margin-right: 6px;
  font-size: 12px;
  color: #f5c542;
}

.pixel-price-section .next-price-highlight {
  color: #ec4899;
}

/* Share card — template pricing-highlights rows */
.pixel-share-box.pricing-highlight-box {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: auto !important;
  padding: 1.25rem 1.2rem 1.3rem;
  gap: 0;
}

.pixel-share-box.pricing-highlight-box .spacer {
  display: none;
}

.pixel-share-box > .d-flex {
  flex: 0 0 auto;
  gap: 0.75rem !important;
  width: 100%;
}

.pixel-share-box h5 {
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: left;
}

@media (max-width: 575.98px) {
  .pixel-price-heading br {
    display: none;
  }

  .pixel-price-heading .pixel-heading-accent {
    display: block;
    margin-top: 0.25rem;
  }
}

.pixel-share-box .share-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  flex: 0 0 auto;
  justify-content: flex-start;
  margin: 0;
  padding: 0 0 0.15rem;
  opacity: 1 !important;
  visibility: visible !important;
}

.pixel-share-box .share-highlight.pricing-highlights {
  padding: 12px 14px;
  flex-shrink: 0;
}

.pixel-share-box .share-highlight.pricing-highlights:last-child {
  margin-bottom: 0;
}

.pixel-share-box .share-highlight.pricing-highlights {
  cursor: pointer;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  pointer-events: auto;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pixel-share-box .share-highlight span {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #dddddd;
}

.pixel-share-box .share-highlight:hover span,
.pixel-share-box .share-highlight:focus span {
  color: #ffffff;
}

.pixel-share-box .share-highlight:hover,
.pixel-share-box .share-highlight:focus {
  border-color: rgba(153, 51, 255, 0.45);
  transform: scale(1.01);
}

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

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

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

.pixel-share-box .share-btn--copy i {
  color: #9933ff;
}

@media (max-width: 1199.98px) {
  .page-home-banner .banner-content {
    width: 100%;
    max-width: none;
  }

  .page-home-banner .banner-heading,
  .page-home-banner .banner-heading--with-owner {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }

  .page-home-banner .banner-owner-col {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .page-home-banner .banner-right-col {
    flex: 1 1 auto;
    width: 100%;
  }

  .header-area--marko .navbar-action-container {
    width: 100%;
    margin-top: 1rem;
  }

  .header-area--marko .navbar-action-button {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Legacy hero banner wrapper */
.hero-banner-home.section-banner {
  padding: 0 30px 0 30px;
}

.hero-banner-home .banner-video-container {
  min-height: auto;
  padding: 4rem 1.5rem 4.5rem;
  border-color: rgba(153, 51, 255, 0.25);
  background-image: radial-gradient(at top center, rgba(153, 51, 255, 0.12) 0%, #030007 55%);
}

.hero-banner-home .banner-video-container::before {
  opacity: 0.65;
}

.hero-banner-home .hero-banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-banner-home #banner-video-background {
  opacity: 0.22;
}

.hero-banner-home .hero-header h1.title-heading-banner {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-text-fill-color: #ffffff;
  background-image: none;
  color: #ffffff;
}

.hero-banner-home .hero-title-accent {
  background: linear-gradient(90deg, #9933ff 0%, #cc44ff 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.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: none;
  transition: filter 0.25s ease, transform 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: none;
}

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

/* Share This */
.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-banner-home .current-price-share,
  .hero-section .current-price-share,
  .home-below-banner .current-price-share,
  .pixel-price-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-banner-home .banner-video-container {
    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-banner-home .current-price-share,
  .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-banner-home .current-price-share,
.hero-section .current-price-share {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px;
  margin: 4rem auto 0;
}

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

@media (max-width: 767.98px) {
  .hero-banner-home .banner-video-container {
    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);
}

/* ======================================================================== */
/* Why Choose Us — Marko chooseus layout (home) */
/* ======================================================================== */

.pixel-chooseus-section {
  background-color: #0d0d1a;
}

.pixel-chooseus-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8fad;
}

.pixel-chooseus-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0ff;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
}

.pixel-chooseus-section .chooseus-content > p {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #9a8fad;
}

.pixel-chooseus-section .chooseus-title {
  font-family: "Rajdhani", sans-serif;
  color: #ffffff;
}

.pixel-chooseus-section .card-chooseus,
.pixel-chooseus-section .card-chooseus:hover,
.pixel-chooseus-section .card-chooseus-cta,
.pixel-chooseus-section .card-chooseus-cta:hover {
  box-shadow: none !important;
}

.pixel-chooseus-section .card-chooseus-cta h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #e8e0f0;
}

.pixel-chooseus-section .chooseus-img {
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  border-radius: var(--global-border-radius, 16px);
  object-fit: cover;
  border: 1px solid rgba(153, 51, 255, 0.25);
}

/* ======================================================================== */
/* Ownership History — Marko case-studies shell */
/* ======================================================================== */

.ownership-history-section {
  padding: 80px 20px;
  background-color: #0d0d1a;
}

.ownership-history-layout.case-studies-layout {
  padding: 2px 2px 0;
}

.ownership-history-shell.card-case-studies {
  gap: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background-color: #13132a;
}

.ownership-history-shell .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8fad;
}

.ownership-history-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0ff;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
}

.ownership-history-divider.spacer {
  width: 80%;
  height: 3px;
  margin: 0 auto;
}

.ownership-table-card.service-recent {
  width: 100%;
  padding: 1rem 1.15rem 1.1rem;
  text-align: left;
  overflow-x: auto;
}

.ownership-table-card .ownership-table {
  background-color: transparent;
}

.ownership-stats-stack {
  height: 100%;
}

.ownership-history-stat.card-expertise {
  width: 100%;
  height: auto;
  padding: 1rem 1.1rem 1.05rem;
  margin: 0;
  box-shadow: none !important;
  border: 1px solid rgba(153, 51, 255, 0.22);
  background-image: radial-gradient(
    at bottom right,
    rgba(153, 51, 255, 0.12) 0%,
    rgba(3, 0, 7, 0.95) 55%
  );
}

.ownership-history-stat.card-expertise:hover {
  box-shadow: none !important;
  border-color: rgba(153, 51, 255, 0.38);
}

.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-history-stat .ownership-stat-body {
  flex: 1;
  gap: 0.2rem;
  padding-bottom: 0.1rem;
}

.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: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.ownership-stat-value--purple {
  color: #cc66ff;
  filter: drop-shadow(0 0 12px rgba(153, 51, 255, 0.25));
}

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

/* ======================================================================== */
/* CTA — Marko newsletter layout */
/* ======================================================================== */

.pixel-cta-section {
  padding: 80px 20px;
  background-color: #0d0d1a;
}

.pixel-cta-section .newsletter-layout {
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.pixel-cta-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background-image: none;
}

.pixel-cta-sub {
  max-width: 640px;
  margin: 0 auto;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #9a8fad;
}

#pixelCtaForm.pixel-cta-form,
.about-cta-form.pixel-cta-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 100px;
  background-color: #13132a;
  border: 1px solid rgba(153, 51, 255, 0.25);
}

#pixelCtaForm .input-container,
.about-cta-form .input-container {
  display: block;
  flex: 1;
  width: auto;
  min-width: 0;
  margin: 0;
  gap: 0;
}

#pixelCtaForm .pixel-cta-input,
.about-cta-form .pixel-cta-input {
  width: 100%;
  padding: 1.15rem 1.25rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e8e0f0 !important;
  text-align: left;
  background: transparent !important;
  border: none;
  outline: none;
  cursor: default;
  border-radius: 0;
}

#pixelCtaForm .btn.btn-accent,
.about-cta-form .btn.btn-accent {
  display: inline-flex;
  width: auto;
  max-width: none;
  align-self: center;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: none !important;
}

#pixelCtaForm .btn.btn-accent .btn-title,
.about-cta-form .btn.btn-accent .btn-title {
  width: auto;
  flex: 0 1 auto;
  padding: 1rem 1.25rem 1rem 1.5rem;
}

#pixelCtaForm .btn.btn-accent:hover,
#pixelCtaForm .btn.btn-accent:focus,
.about-cta-form .btn.btn-accent:hover,
.about-cta-form .btn.btn-accent:focus {
  box-shadow: none !important;
  filter: brightness(1.08);
}

@media (max-width: 767.98px) {
  #pixelCtaForm.pixel-cta-form,
  .about-cta-form.pixel-cta-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 12px;
    gap: 10px;
  }

  #pixelCtaForm .pixel-cta-input,
  .about-cta-form .pixel-cta-input {
    text-align: center;
    padding: 0.85rem 1rem;
  }

  #pixelCtaForm .btn.btn-accent,
  .about-cta-form .btn.btn-accent {
    width: 100%;
    justify-content: space-between;
  }
}

/* ======================================================================== */
/* Site Footer — Marko 4-column reference layout */
/* ======================================================================== */

.site-footer--marko {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  overflow: hidden;
}

.site-footer--marko .site-footer-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: min(1000px, 95vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center bottom, rgba(153, 51, 255, 0.35) 0%, rgba(120, 40, 200, 0.12) 40%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.site-footer-outer {
  position: relative;
  z-index: 1;
  padding: 48px 20px 56px;
}

.site-footer-panel {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(100, 40, 160, 0.45);
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(153, 51, 255, 0.08) inset,
    0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Mobile: 1 column | Tablet: 2 columns | Laptop+: 3 columns in one row */
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.75rem;
  align-items: start;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}

.site-footer-col {
  min-width: 0;
}

.site-footer-col-title {
  margin: 0 0 1.25rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.site-footer-tagline-heading {
  margin-top: 1.25rem;
  margin-bottom: 0.85rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

/* Brand / logo */
.site-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  margin-bottom: 0;
}

.site-footer-logo-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.site-footer-favicon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(153, 51, 255, 0.55));
}

.site-footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer-logo-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.site-footer-logo-tagline {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.site-footer-about {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* Link lists */
.site-footer-menu,
.site-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-menu li + li,
.site-footer-contact-list li + li {
  margin-top: 0.65rem;
}

.site-footer-menu a,
.site-footer-contact-list a {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer-menu a:hover,
.site-footer-contact-list a:hover {
  color: #c82aef;
}

.site-footer-contact-list li {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  color: #9ca3af;
}

.site-footer-social-title {
  margin-top: 1.75rem;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(153, 51, 255, 0.45);
  background: rgba(153, 51, 255, 0.15);
  color: #e8d4ff;
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(153, 51, 255, 0.35),
    0 0 40px rgba(153, 51, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-footer-social-btn i {
  font-size: 1.15rem;
}

.site-footer-social-btn:hover {
  color: #ffffff;
  background: rgba(200, 42, 239, 0.35);
  transform: translateY(-3px);
  box-shadow:
    0 0 28px rgba(200, 42, 239, 0.55),
    0 0 50px rgba(153, 51, 255, 0.25);
}

/* Bottom bar inside panel */
.site-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-copy {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.site-footer-legal a {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

#footer {
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 991.98px) {
  .site-footer-outer {
    padding: 40px 16px 48px;
  }
}

@media (max-width: 575.98px) {
  .site-footer-outer {
    padding: 32px 12px 40px;
  }

  .site-footer-panel {
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 16px;
  }

  .site-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-legal {
    gap: 0.85rem;
  }

  .site-footer-social-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .pixel-cta-section {
    padding: 48px 16px;
  }

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

  .ownership-history-body .col + .col {
    margin-top: 0.5rem;
  }

  .ownership-stats-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ownership-table-card.service-recent {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ownership-stat-value,
  .ownership-stat-value--purple {
    font-size: 1.2rem;
  }
}

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

  .ownership-history-shell.card-case-studies {
    padding: 1.25rem;
  }

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

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

/* ======================================================================== */
/* Buy The Pixel page — Marko template layout */
/* ======================================================================== */

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

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

.page-buy-banner .buy-banner-title {
  font-family: "Orbitron", sans-serif;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.buy-checkout-section {
  padding-top: 60px;
  padding-bottom: 40px;
}

.buy-checkout-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9933ff;
}

.buy-intro-text {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  color: #9a8fad;
}

.buy-form-layout.form-layout {
  margin-top: 1.5rem;
  text-align: center;
  box-shadow: none;
  gap: 1.5rem;
  padding: 2rem 2rem 2.25rem;
}

.buy-form-price-block {
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(153, 51, 255, 0.2);
}

.buy-pixel-glow {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #9933ff, #ec4899);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(153, 51, 255, 0.55);
}

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

.buy-card-price-value {
  margin: 0.35rem 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  color: #cc66ff;
}

.buy-card-price-next {
  margin: 0.5rem 0 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  color: #888888;
}

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

.buy-payment-form.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-top: 0;
}

.buy-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.buy-field-label {
  display: block;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8fad;
}

.buy-payment-form input,
.buy-payment-form textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.875rem 1.125rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  background-color: #0d0d1a;
  border: 1px solid rgba(153, 51, 255, 0.22);
  border-radius: 10px;
  box-sizing: border-box;
}

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

.buy-payment-form input:focus,
.buy-payment-form textarea:focus {
  outline: none;
  border-color: rgba(153, 51, 255, 0.55);
  box-shadow: none;
}

.buy-payment-form textarea {
  min-height: 108px;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  resize: vertical;
  border-radius: 10px;
}

.buy-form-summary-error {
  display: block;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ff6b6b;
  font-size: 0.95rem;
  text-align: center;
}

.buy-form-summary-error.hidden {
  display: none;
}

.buy-char-counter {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 255, 0.5);
  text-align: right;
}

.buy-char-counter-over {
  color: #ff6b6b;
}

.buy-required {
  color: var(--accent-color, #a855f7);
}

.buy-payment-form .error-text {
  color: var(--error-color, #ff4d6d);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  margin: 0;
}

.buy-payment-form .error-text.hidden {
  display: none;
}

.buy-payment-form input.error-border,
.buy-payment-form textarea.error-border {
  border-color: var(--error-color, #ff4d6d) !important;
}

.buy-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.buy-submit-btn.btn-accent {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 0;
  box-shadow: none !important;
}

.buy-submit-btn .btn-title span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.buy-card-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  color: #666666;
}

.buy-card-secure .fa-lock {
  color: #f5c542;
  font-size: 0.75rem;
}

.buy-trust-row {
  margin-top: 1.75rem;
}

.buy-trust-card.card-expertise {
  width: 100%;
  height: 100%;
  padding: 1.25rem 1rem;
  box-shadow: none !important;
}

.buy-trust-card.card-expertise:hover {
  box-shadow: none !important;
}

.buy-trust-card .chooseus-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  margin: 0;
}

.buy-trust-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #888888;
}

.buy-trust-icon {
  font-size: 1.75rem;
}

/* What you get — Marko digital-process block */
.page-buy .buy-process-section {
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.page-buy .buy-process-section .digital-process-banner {
  padding: 80px 24px 90px;
}

.page-buy .buy-process-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-buy .buy-process-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8fad;
}

.page-buy .buy-process-intro {
  margin: 0;
  max-width: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #888888;
}

.page-buy .buy-process-section .link-wrapper a {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
}

.page-buy .buy-process-section .digital-process-step h5 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.page-buy .buy-process-section .digital-process-step p {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  color: #888888;
}

.page-buy .buy-process-section .process-icon {
  width: auto;
  max-width: 56px;
  height: auto;
}

@media (max-width: 768px) {
  .buy-checkout-section {
    padding-top: 40px;
  }

  .buy-form-layout.form-layout {
    gap: 1.25rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .buy-payment-form.form {
    gap: 1rem;
  }
}

/* ======================================================================== */
/* Fake payment page (demo checkout) */
/* ======================================================================== */

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

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

.fake-payment-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.fake-payment-card {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.fake-payment-header {
  margin-bottom: 1.5rem;
}

.fake-payment-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.fake-payment-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.fake-payment-summary-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5f0ff;
  margin: 0 0 1rem;
}

.fake-payment-summary-list {
  margin: 0;
  padding: 0;
}

.fake-payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fake-payment-summary-row:last-child {
  border-bottom: none;
}

.fake-payment-summary-row dt {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 255, 0.55);
  font-weight: 500;
}

.fake-payment-summary-row dd {
  margin: 0;
  font-size: 0.95rem;
  color: #f5f0ff;
  text-align: right;
  max-width: 60%;
}

.fake-payment-price {
  color: var(--accent-color, #a855f7);
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
}

.fake-payment-confirm-btn {
  width: 100%;
  max-width: 100%;
}

.fake-payment-confirm-btn .btn-title span {
  color: #fff;
}

.fake-payment-secure {
  margin-top: 0.75rem;
}

.fake-payment-cancel-wrap {
  margin-top: 1rem;
  margin-bottom: 0;
}

.fake-payment-cancel {
  color: rgba(245, 240, 255, 0.55);
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.fake-payment-cancel:hover {
  color: var(--accent-color, #a855f7);
}

/* ======================================================================== */
/* History page — Marko case-studies layout */
/* ======================================================================== */

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

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

.page-history-banner .history-banner-title {
  font-family: "Orbitron", sans-serif;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-history .history-page-section {
  padding: 60px 20px 100px;
  background-color: #0a0a0a;
}

.page-history .history-page-layout.case-studies-layout {
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.page-history .history-page-shell.ownership-history-shell {
  gap: 1.75rem;
}

.page-history .history-page-header {
  margin: 0;
  padding: 0;
  text-align: center;
}

.page-history .history-page-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #f5f0ff;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
}

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

.page-history .history-page-divider.ownership-history-divider {
  margin: 0.25rem auto;
}

.history-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 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;
}

.page-history .history-stats-row {
  margin: 0;
}

.page-history .history-page-stat.ownership-history-stat {
  height: 100%;
}

.page-history .history-table-card.ownership-table-card {
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem 1.1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-history .history-table-card .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;
}

/* History page — Hall of Fame related section */
.page-history .history-related-section {
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.page-history .history-related-section .digital-process-banner {
  padding: 80px 24px 90px;
}

.page-history .history-related-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-history .history-related-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8fad;
}

.page-history .history-related-intro {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #888888;
}

.page-history .history-related-icon {
  font-size: 1.75rem;
}

.page-history .history-related-section .digital-process-step h5 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.page-history .history-related-section .digital-process-step p {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  color: #888888;
}

.page-history .history-related-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-history .history-cta-btn.btn.btn-accent {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  align-self: center;
  flex-shrink: 0;
  box-shadow: none !important;
}

.page-history .history-cta-btn .btn-title {
  width: auto;
  flex: 0 1 auto;
  padding: 16px 28px 16px 32px;
  white-space: nowrap;
}

.page-history .history-cta-btn .btn-title span {
  letter-spacing: 0.5px;
}

.page-history .history-cta-btn.btn.btn-accent:hover,
.page-history .history-cta-btn.btn.btn-accent:focus {
  box-shadow: none !important;
  filter: brightness(1.08);
}

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

  .page-history .history-related-section .digital-process-banner {
    padding: 48px 16px 56px;
  }

  .page-history .history-page-heading.title-heading {
    font-size: 1.75rem;
  }

  .history-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

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

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

/* ======================================================================== */
/* Leaderboard page — Marko case-studies layout */
/* ======================================================================== */

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

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

.page-leaderboard-banner .leaderboard-banner-title {
  font-family: "Orbitron", sans-serif;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-leaderboard .leaderboard-page-section {
  padding: 60px 20px 100px;
  background-color: #0a0a0a;
}

.page-leaderboard .leaderboard-page-layout.case-studies-layout {
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.page-leaderboard .leaderboard-page-shell.ownership-history-shell {
  gap: 1.75rem;
}

.page-leaderboard .leaderboard-page-header {
  margin: 0;
  padding: 0;
  text-align: center;
}

.page-leaderboard .leaderboard-page-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #f5f0ff;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
}

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

.page-leaderboard .leaderboard-page-divider.ownership-history-divider {
  margin: 0.25rem auto;
}

.page-leaderboard .leaderboard-stats-row {
  margin: 0;
}

.page-leaderboard .leaderboard-page-stat.ownership-history-stat {
  height: 100%;
}

.page-leaderboard .leaderboard-page-stat .ownership-stat-value {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
}

.page-leaderboard .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 */
.page-leaderboard .leaderboard-podium {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 760px;
  margin: 0.5rem 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 */
.page-leaderboard .leaderboard-table-card.ownership-table-card {
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem 1.1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.leaderboard-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #cc66ff;
  background: rgba(153, 51, 255, 0.12);
  border: 1px solid rgba(153, 51, 255, 0.45);
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.leaderboard-view-btn:hover {
  color: #ffffff;
  background: rgba(153, 51, 255, 0.35);
  border-color: #9933ff;
}

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

.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 — related section */
.page-leaderboard .leaderboard-related-section {
  padding: 0 1.5rem 5rem;
  background-color: #0a0a0a;
}

.page-leaderboard .leaderboard-related-section .digital-process-banner {
  padding: 80px 24px 90px;
}

.page-leaderboard .leaderboard-related-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-leaderboard .leaderboard-related-intro {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #888888;
}

.page-leaderboard .leaderboard-related-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-leaderboard .leaderboard-cta-btn.btn.btn-accent {
  display: inline-flex;
  width: auto;
  align-self: center;
  box-shadow: none !important;
}

.page-leaderboard .leaderboard-cta-btn .btn-title {
  width: auto;
  flex: 0 1 auto;
  padding: 16px 28px 16px 32px;
  white-space: nowrap;
}

.page-leaderboard .leaderboard-cta-btn.btn.btn-accent:hover,
.page-leaderboard .leaderboard-cta-btn.btn.btn-accent:focus {
  box-shadow: none !important;
  filter: brightness(1.08);
}

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

  .page-leaderboard .leaderboard-page-heading.title-heading {
    font-size: 1.75rem;
  }

  .page-leaderboard .leaderboard-podium {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

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

  .page-leaderboard .leaderboard-related-section .digital-process-banner {
    padding: 48px 16px 56px;
  }
}

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

/* ======================================================================== */
/* About page — Marko template sections */
/* ======================================================================== */

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

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

.page-about-banner .about-banner-title {
  font-family: "Orbitron", sans-serif;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-about .about-who-section,
.page-about .about-values-section,
.page-about .about-faq-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.page-about .about-who-heading.title-heading,
.page-about .about-values-heading.title-heading,
.page-about .about-faq-heading.title-heading,
.page-about .about-partner-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  -webkit-text-fill-color: #f5f0ff;
  background-image: none;
  color: #f5f0ff;
}

.page-about .about-who-section .sub-heading span,
.page-about .about-values-section .sub-heading span,
.page-about .about-faq-section .sub-heading span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8fad;
}

.page-about .about-who-section p,
.page-about .about-partner-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #888888;
}

.page-about .about-counter {
  font-family: "Orbitron", sans-serif;
  color: #cc66ff;
}

.page-about .about-partner-section {
  padding: 0 20px 80px;
  background-color: #0a0a0a;
}

.page-about .about-owners-marquee-wrap {
  position: relative;
  margin-top: 0.75rem;
  padding: 0.5rem 0 1rem;
  overflow: hidden;
}

.page-about .about-owners-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.page-about .about-owners-marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: about-owners-marquee 38s linear infinite;
  will-change: transform;
}

@keyframes about-owners-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.page-about .about-owner-slide {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 28px;
  background-color: #0d0d1a;
  border: 1px solid rgba(153, 51, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(153, 51, 255, 0.12);
}

.page-about .about-owner-tag {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8e0f5;
  white-space: nowrap;
}

.page-about .about-faq-section {
  padding-bottom: 60px;
}

.page-about .about-cta-section {
  padding: 80px 20px 100px;
  background-color: #0a0a0a;
}

.page-about .about-cta-section .newsletter-layout {
  text-align: center;
}

.page-about .about-cta-heading.title-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background-image: none;
}

.page-about .about-cta-desc {
  max-width: 640px;
  margin: 0 auto;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #9a8fad;
}

/* About CTA bar — same as Marko #newsletterForm */
#aboutCtaForm {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: center;
  gap: 0.5rem;
  width: min(100%, 80%);
  max-width: 720px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 100px;
  background-color: #13132a;
  border: 1px solid rgba(153, 51, 255, 0.22);
}

#aboutCtaForm .input-container {
  display: block;
  flex: 1;
  width: auto;
  min-width: 0;
  margin: 0;
  gap: 0;
}

#aboutCtaForm input {
  width: 100%;
  padding: 23px 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e8e0f0 !important;
  text-align: left;
  background-color: transparent !important;
  border: none;
  border-radius: 20px;
  outline: none;
  cursor: default;
}

#aboutCtaForm .btn.btn-accent {
  display: inline-flex;
  width: auto;
  max-width: none;
  align-self: center;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: none !important;
}

#aboutCtaForm .btn.btn-accent .btn-title {
  width: auto;
  flex: 0 1 auto;
}

#aboutCtaForm .btn.btn-accent:hover,
#aboutCtaForm .btn.btn-accent:focus {
  box-shadow: none !important;
  filter: brightness(1.08);
}

@media (max-width: 767.98px) {
  #aboutCtaForm {
    flex-direction: column;
    width: 100%;
    border-radius: 35px;
    padding: 12px;
    gap: 10px;
  }

  #aboutCtaForm input {
    text-align: center;
    padding: 18px 16px;
  }

  #aboutCtaForm .btn.btn-accent {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .page-about .about-who-section,
  .page-about .about-values-section,
  .page-about .about-faq-section {
    padding: 48px 16px;
  }

  .page-about .about-partner-section {
    padding: 0 16px 48px;
  }
}

