@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Russo+One&display=swap");

:root {
  --bg: #050506;
  --panel: #101013;
  --panel-2: #17121f;
  --text: #f8f5fb;
  --muted: #b9b1c5;
  --purple: #8c3bd8;
  --purple-bright: #b15cff;
  --yellow: #f6d84a;
  --red: #e94848;
  --gold: #c99a3c;
  --line: rgba(255, 255, 255, 0.14);
  --soft: rgba(255, 255, 255, 0.055);
  --shadow: rgba(140, 59, 216, 0.3);
  --font-display: "Russo One", Impact, "Arial Black", sans-serif;
  --font-body: "Rajdhani", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 16%, rgba(140, 59, 216, 0.22), transparent 28rem),
    linear-gradient(135deg, #050506 0%, #0d0b11 52%, #050506 100%);
  color: var(--text);
  font-family: var(--font-body);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 78px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2.6vw, 1.8rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  font-family: var(--font-display);
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: var(--text);
}

main {
  overflow: hidden;
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 87px);
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  isolation: isolate;
}

.page-hero {
  min-height: 64vh;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.97), rgba(5, 5, 6, 0.78) 46%, rgba(5, 5, 6, 0.44));
  pointer-events: none;
}

.hero-copy,
.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.hero-mark {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 7vw, 10rem);
  z-index: 0;
  width: min(42vw, 680px);
  opacity: 0.3;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 50px rgba(140, 59, 216, 0.28));
}

.pokemon-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(246, 216, 74, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(5, 5, 6, 0.98), rgba(17, 13, 21, 0.98));
}

.consignment-hero,
.contact-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(140, 59, 216, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(5, 5, 6, 0.98), rgba(17, 13, 21, 0.98));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--purple-bright);
  font-size: 0.76rem;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.hero-text,
.intro p,
.copy-block p,
.contact p,
.feature p,
.muted-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 2rem;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button.primary {
  background: var(--purple);
  box-shadow: 0 16px 36px var(--shadow);
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #09090b;
}

.trust-strip span {
  min-height: 72px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.intro,
.section,
.split-section,
.contact {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3.5rem);
}

.intro {
  border-bottom: 1px solid var(--line);
  background: #0b0b0d;
}

.intro p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 2rem;
}

.feature-grid,
.product-grid,
.partner-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.feature,
.product-card,
.partner-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.feature {
  min-height: 300px;
  padding: 1.35rem;
}

.feature-number {
  display: inline-block;
  margin-bottom: 4.8rem;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-weight: 900;
}

.feature a,
.contact-card a {
  color: var(--purple-bright);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
  background: #08080a;
}

.dark-band {
  background: #050506;
}

.copy-block {
  max-width: 780px;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.game-item {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 1rem;
  border: 1px solid rgba(177, 92, 255, 0.34);
  border-left-width: 4px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

.pokemon,
.pokemon-accent {
  border-left-color: var(--yellow);
  box-shadow: -10px 0 28px rgba(246, 216, 74, 0.08);
}

.one-piece {
  border-left-color: var(--red);
  box-shadow: -10px 0 28px rgba(233, 72, 72, 0.08);
}

.yugioh {
  border-left-color: var(--gold);
  box-shadow: -10px 0 28px rgba(201, 154, 60, 0.09);
}

.future,
.muted-card {
  color: var(--muted);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 4px solid var(--yellow);
}

.product-media {
  display: flex;
  align-items: flex-end;
  min-height: 170px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(246, 216, 74, 0.22), rgba(5, 5, 6, 0.18)),
    var(--panel-2);
}

.product-media span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-body,
.partner-card,
.contact-card {
  padding: 1.2rem;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-type {
  margin-bottom: 0.75rem;
  color: var(--purple-bright);
  font-size: 0.74rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-body p:not(.product-type),
.partner-card p:not(.product-type),
.contact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.product-meta {
  display: grid;
  gap: 0.35rem;
  margin: auto 0 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 900;
}

.product-meta span + span {
  color: var(--muted);
}

.product-card .button {
  width: 100%;
}

.table-wrap {
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.rate-table th,
.rate-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table th {
  color: var(--purple-bright);
  font-size: 0.76rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rate-table td {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.loyalty-table-wrap {
  margin-top: 1rem;
}

.partner-card {
  min-height: 220px;
  border-left: 4px solid var(--purple);
  box-shadow: -10px 0 28px rgba(140, 59, 216, 0.08);
}

.calculator-section {
  align-items: start;
}

.calculator {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(177, 92, 255, 0.34);
  border-radius: 8px;
  background: var(--soft);
}

.calculator label {
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.currency-input {
  display: flex;
  align-items: center;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.currency-input span {
  padding-left: 1rem;
  color: var(--purple-bright);
  font-weight: 900;
}

.currency-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.5rem;
  font-weight: 900;
  outline: 0;
  padding: 0.8rem 1rem;
}

.calc-results,
.breakdown-list,
.cost-grid {
  display: grid;
  gap: 0.75rem;
}

.calc-results div,
.breakdown-list div,
.cost-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.calc-results span,
.breakdown-list span {
  color: var(--muted);
  font-weight: 800;
}

.calc-results strong,
.breakdown-list strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.cost-grid span {
  color: var(--muted);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  background:
    linear-gradient(90deg, rgba(140, 59, 216, 0.28), transparent),
    var(--panel);
}

.contact div {
  max-width: 760px;
}

.primary-contact {
  border-left: 4px solid var(--purple);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: grid;
  gap: 0.5rem;
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  background: var(--soft);
}

.social-card span,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(177, 92, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.social-card img,
.social-links img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.social-card.ebay img,
.social-links a[aria-label="eBay"] img {
  width: 34px;
}

.social-card strong {
  font-size: 1.15rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.social-card small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.social-card.instagram {
  border-left-color: #d946ef;
}

.social-card.facebook {
  border-left-color: #3b82f6;
}

.social-card.ebay {
  border-left-color: var(--yellow);
}

.social-card.whatsapp {
  border-left-color: #22c55e;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.social-links a {
  width: 58px;
  height: 58px;
  padding: 0;
  border-color: rgba(177, 92, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--purple-bright);
  transform: translateY(-2px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem clamp(1rem, 4vw, 3.5rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 900;
}

footer > div:first-child {
  min-width: min(420px, 100%);
}

footer p {
  margin: 0;
}

@media (min-width: 1400px) {
  .hero-mark {
    right: clamp(5rem, 9vw, 13rem);
    width: min(38vw, 720px);
  }
}

@media (max-width: 1040px) {
  .product-grid,
  .partner-grid,
  .contact-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 6rem;
  }

  .hero-mark {
    top: auto;
    right: 50%;
    bottom: -5rem;
    width: min(24rem, 82vw);
    opacity: 0.13;
    translate: 50% 0;
    transform: none;
  }

  .feature-grid,
  .game-list,
  .cost-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 220px;
  }

  .feature-number {
    margin-bottom: 2.6rem;
  }

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

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav,
  .button,
  .actions,
  .contact-actions,
  .contact .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.75rem);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11.4vw, 3.45rem);
    line-height: 0.98;
  }

  .product-grid,
  .partner-grid,
  .contact-grid,
  .social-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .calc-results div,
  .breakdown-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }
}
