:root {
  --bg: #0b1020;
  --bg-soft: #141b31;
  --card: #12182b;
  --line: rgba(255,255,255,0.08);
  --text: #f4f6fb;
  --muted: #b7bfd2;
  --gold: #f4c542;
  --blue: #6fb3ff;
  --green: #34d399;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #08101c 0%, #0f172a 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

code {
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 8px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.card,
.product-card,
.info-card,
.guide-box,
.tracking-box,
.contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero-copy,
.hero-image {
  padding: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 56ch;
}

.hero-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-box .hero-actions {
  width: 100%;
  max-width: 420px;
}

.contact-box .hero-actions .btn {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--line);
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}

.btn-secondary {
  background: transparent;
  color: #fff;
}

.section {
  padding: 28px 0 8px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.6;
}

.product-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pokemon-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.onepiece-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,197,66,0.35);
}

.product-image {
  padding: 12px;
  background: #0c1221;
}

.product-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.product-body {
  padding: 16px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 14px;
  min-height: 44px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.08rem;
}

.stock {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.btn-whatsapp {
  flex: 1;
  background: #25d366;
  color: #08101c;
  border-color: transparent;
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
}

.buy-actions {
  display: flex;
  gap: 10px;
}

.btn-telegram {
  flex: 1;
  background: #229ed9;
  color: #fff;
  border-color: transparent;
}

.btn-telegram:hover {
  filter: brightness(1.05);
}

.info-card {
  padding: 20px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.info-card p,
.guide-box p,
.guide-box li,
.tracking-box,
.contact-box p {
  color: var(--muted);
  line-height: 1.65;
}

.highlight-note {
  color: var(--gold);
  font-weight: 700;
}

.tracking-box,
.guide-box,
.contact-box {
  padding: 20px;
  margin-top: 18px;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.guide-box ul {
  margin: 0 0 14px;
  padding-left: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding: 24px 0 40px;
}

.footer p {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-image {
    padding: 22px;
  }

  h1 {
    font-size: 2rem;
  }

  .buy-actions {
    flex-direction: column;
  }
}
