:root {
  --bg-main: #060d18;
  --bg-panel: #1a1a1a;
  --bg-card: #252525;
  --line-subtle: rgba(80, 80, 80, 0.3);
  --line-soft: rgba(80, 80, 80, 0.25);
  --text-main: #d8e9ff;
  --text-muted: rgba(154, 191, 236, 0.58);
  --text-muted-2: rgba(126, 164, 210, 0.5);
  --accent: #6fb4ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  min-height: 100vh;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
[contenteditable="true"],
[contenteditable="plaintext-only"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

.container {
  width: min(72rem, calc(100% - 5rem));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 56px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: 2.5rem;
  margin-right: auto;
}

.nav-links a,
.nav-button {
  color: var(--text-muted);
  background: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-button:hover,
.browse-button:hover,
.purchase:hover,
.footer-links button:hover,
.close-button:hover {
  color: var(--text-main);
}

.country {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--text-muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.globe-dot {
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #3ecbff 0%, #2a7dd4 45%, #2a4c8b 100%);
}

.hero {
  position: relative;
  min-height: 500px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("assets/superb.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-inline: 1.5rem;
}

.hero-content h1 {
  margin: 0 0 1.25rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(3rem, 9vw, 6rem);
  background: linear-gradient(150deg, #e7f4ff 0%, #8ac3ff 55%, #3d8ef1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-content p {
  margin: 0;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(168, 203, 245, 0.45);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.browse-button {
  margin-top: 2.25rem;
  display: inline-block;
  text-decoration: none;
  padding: 0.6rem 1.75rem;
  border-radius: 4px;
  border: 1px solid rgba(76, 133, 214, 0.4);
  background: rgba(44, 92, 168, 0.38);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}

.browse-button:hover {
  border-color: rgba(126, 184, 255, 0.72);
}

.products-wrap {
  background: var(--bg-panel);
  padding: 5rem 2.5rem;
}

.products-inner h2 {
  margin: 0 0 2rem;
  color: #9dc9ff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  max-width: 72rem;
}

.product-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-subtle);
  background: var(--bg-card);
}

.product-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1rem;
}

.vendor {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  color: rgba(124, 167, 220, 0.52);
}

.card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #75b5ff;
}

.purchase {
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  border: 1px solid rgba(78, 136, 218, 0.5);
  background: rgba(42, 86, 155, 0.4);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.purchase:hover {
  border-color: rgba(124, 186, 255, 0.82);
}

.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--line-soft);
  padding: 2rem 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.copyright {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  color: rgba(124, 158, 200, 0.42);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  color: rgba(132, 174, 224, 0.54);
  transition: color 0.2s;
}

.footer-links button:hover {
  color: #9dc9ff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.payments-title {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(124, 158, 200, 0.42);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.payment-icons img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.payment-icons img:hover {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 40rem;
  max-height: 78vh;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(76, 132, 212, 0.32);
  padding: 2rem;
  background: #0d1a2f;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(76, 132, 212, 0.22);
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #deecff;
  letter-spacing: 0.01em;
}

.close-button {
  border: 0;
  background: none;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  color: rgba(146, 188, 245, 0.68);
  font-size: 1.5rem;
  transition: color 0.2s;
}

.modal-divider {
  display: none;
}

.modal-scroll {
  max-height: calc(78vh - 6.8rem);
  overflow-y: auto;
  color: rgba(186, 214, 245, 0.76);
  font-size: 0.85rem;
  line-height: 1.85;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-scroll::-webkit-scrollbar {
  display: none;
}

.last-updated {
  margin: 0 0 0.4rem;
  color: rgba(122, 170, 226, 0.66);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.modal-scroll p {
  margin: 0.4rem 0 0;
  color: rgba(186, 214, 245, 0.74);
}

.modal-scroll h3 {
  margin: 1.25rem 0 0;
  color: #b8dcff;
  font-weight: 600;
  font-size: 0.875rem;
}

.modal-scroll ul {
  margin: 0.4rem 0 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.modal-scroll li {
  margin-bottom: 0.3rem;
}

.modal-scroll strong {
  color: #deecff;
}

@media (max-width: 900px) {
  .container {
    width: calc(100% - 2rem);
  }

  .topbar-inner {
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    margin-left: 1rem;
  }

  .products-wrap {
    padding: 3rem 1rem;
  }

  .site-footer {
    padding: 1.5rem 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
