:root {
  --bg: #050509;
  --bg-grad-top: #160015;
  --bg-grad-mid: #050509;
  --bg-grad-bottom: #000000;
  --text: #e5e5e5;
  --muted: #9ea0b5;
  --card: #0a0a12;
  --card-soft: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.08);
  --accent: #ff2b8a;
  --accent-soft: rgba(255,43,138,0.15);
  --accent-strong: #ff0066;
  --accent-strong-2: #c300ff;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, var(--bg-grad-top) 0, var(--bg-grad-mid) 55%, var(--bg-grad-bottom) 100%);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(5,5,12,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.7rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  background: linear-gradient(135deg,#ff0066,#c300ff);
  padding: 10px 14px;
  border-radius: 14px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  margin-top: 0.5rem;
  background: #080810;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0;
  min-width: 190px;
  z-index: 9999;
}

.dropdown-content a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* PAGE WRAPPER */

.page {
  max-width: 1100px;
  margin: 2.6rem auto 3.5rem auto;
  padding: 0 1.4rem;
}

.page h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  margin: 0 0 0.8rem 0;
}

.page p {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.88;
}

/* SECTION LABELS */

.section-tag {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: 2.8rem;
  margin-bottom: 0.5rem;
}

/* CARDS */

.card {
  background: var(--card-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 0 30px rgba(0,0,0,0.55);
  margin-bottom: 1.4rem;
}

.card p {
  margin: 0.2rem 0 0.5rem 0;
}

.card ul {
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
}

.card li {
  padding: 4px 0;
}

/* GRID LAYOUTS */

.grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.grid-3 > .card {
  flex: 1 1 260px;
}

/* STORE PRODUCT CARDS */

.product-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.product-price {
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: 1rem;
}

/* BUTTONS */

.btn-primary {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,var(--accent-strong),var(--accent-strong-2));
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  box-shadow: 0 0 18px var(--accent-soft);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255,0,120,0.35);
}

/* TABLES */

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.3rem;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding: 0.55rem 0.4rem;
  text-align: left;
  font-size: 0.95rem;
}

.table th {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 3rem 1rem;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* MOBILE */

@media (max-width: 720px) {
  .nav-links {
    gap: 0.8rem;
    font-size: 0.8rem;
  }
  .page {
    margin-top: 2.1rem;
  }
  .page h1 {
    font-size: 1.8rem;
  }
}