@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

@font-face {
  font-family: 'Press Start 2P Fallback';
  font-style: normal;
  font-weight: 400;
  src: local('Courier New'), local('Courier'), local('monospace');
  font-display: swap;
  ascent-override: 100%;
  descent-override: 20%;
  line-gap-override: 0%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

:root {
  --bg-primary: #0b0e12;
  --bg-secondary: #11151c;
  --bg-tertiary: #1a1f2e;
  --bg-card: #141821;
  --text-primary: #ffffff;
  --text-secondary: #8891a8;
  --accent-primary: #00e6ff;
  --accent-hover: #33eeff;
  --accent-secondary: #39ff14;
  --accent-purple: #9d00ff;
  --accent-yellow: #ffdd44;
  --accent-orange: #ff8844;
  --border-color: #1f2533;
  --border-bright: #2a3142;
  --border-glow: #00e6ff;
  --success: #39ff14;
  --warning: #ffdd44;
  --shadow: rgba(0, 0, 0, 0.8);
  --pixel-size: 8px;
  --glow-cyan: 0 0 10px rgba(0, 230, 255, 0.5), 0 0 20px rgba(0, 230, 255, 0.3);
  --glow-green: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
  --glow-purple: 0 0 10px rgba(157, 0, 255, 0.5), 0 0 20px rgba(157, 0, 255, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Press Start 2P', 'Courier New', monospace;
  background: #0b0e12;
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  font-size: 10px;
  letter-spacing: 0.5px;
}

body.loading {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-left: 2px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 0;
  box-shadow:
    0 0 10px rgba(0, 230, 255, 0.6),
    inset 0 0 5px rgba(0, 230, 255, 0.4);
}

::-webkit-scrollbar-thumb:hover {
  background: #33eeff;
  box-shadow:
    0 0 20px rgba(0, 230, 255, 0.9),
    inset 0 0 10px rgba(0, 230, 255, 0.6);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-primary);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(0, 230, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(157, 0, 255, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(57, 255, 20, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(0, 230, 255, 0.2), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(157, 0, 255, 0.2), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(57, 255, 20, 0.2), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px, 220px 220px;
  background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 150px 50px, 90px 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  animation: pixelFloat 60s linear infinite;
}

@keyframes pixelFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(400px);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  background: #0b0e12;
  border-bottom: 2px solid var(--border-glow);
  border-top: none;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow:
    0 0 20px rgba(0, 230, 255, 0.3),
    0 4px 0 0 rgba(0, 0, 0, 0.8),
    inset 0 -2px 0 rgba(0, 230, 255, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .header-content {
    padding: 0.8rem 0;
  }
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  text-shadow:
    0 0 10px rgba(0, 230, 255, 0.8),
    0 0 20px rgba(0, 230, 255, 0.5),
    0 0 30px rgba(0, 230, 255, 0.3),
    2px 2px 0 rgba(0, 0, 0, 0.9);
  font-family: 'Press Start 2P', monospace;
  animation: logoGlow 3s ease-in-out infinite;
  will-change: text-shadow;
}

@keyframes logoGlow {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(0, 230, 255, 0.8),
      0 0 20px rgba(0, 230, 255, 0.5),
      0 0 30px rgba(0, 230, 255, 0.3),
      2px 2px 0 rgba(0, 0, 0, 0.9);
  }

  50% {
    text-shadow:
      0 0 15px rgba(0, 230, 255, 1),
      0 0 30px rgba(0, 230, 255, 0.7),
      0 0 45px rgba(0, 230, 255, 0.5),
      2px 2px 0 rgba(0, 0, 0, 0.9);
  }
}

.logo-link {
  color: var(--accent-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 50px;
  width: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.6));
  transition: filter 0.3s ease;
  display: block;
  object-fit: contain;
  background: transparent;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  text-shadow:
    0 0 10px rgba(0, 230, 255, 0.8),
    0 0 20px rgba(0, 230, 255, 0.5),
    0 0 30px rgba(0, 230, 255, 0.3),
    2px 2px 0 rgba(0, 0, 0, 0.9);
  font-family: 'Press Start 2P', monospace;
  line-height: 1;
  padding-top: 0.2rem;
}

.logo-link:hover .logo-image {
  filter: drop-shadow(0 0 20px rgba(0, 230, 255, 0.9));
}

.logo-link:hover .logo-text {
  text-shadow:
    0 0 15px rgba(0, 230, 255, 1),
    0 0 30px rgba(0, 230, 255, 0.7),
    0 0 45px rgba(0, 230, 255, 0.5),
    2px 2px 0 rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid var(--border-color);
  transition: all 0.2s ease;
  position: relative;
  background: var(--bg-tertiary);
  box-shadow:
    inset 0 1px 0 rgba(0, 230, 255, 0.1),
    0 0 0 rgba(0, 230, 255, 0);
}

.nav-link:hover {
  background: var(--bg-secondary);
  border-color: var(--border-glow);
  color: var(--accent-primary);
  box-shadow:
    var(--glow-cyan),
    inset 0 0 10px rgba(0, 230, 255, 0.2);
  transform: translateY(-2px);
}

.nav-link::after {
  display: none;
}

.nav-link.active {
  color: var(--accent-secondary);
}

.nav-link.active::after {
  width: 100%;
}

.subcategory-nav {
  background-color: var(--bg-primary);
  border-bottom: none;
  border-top: 1px solid var(--border-color);
  position: sticky;
  top: 70px;
  z-index: 90;
  padding: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  overflow: visible;
}

.product-section {
  scroll-margin-top: 240px;
  padding-top: 3rem;
}

.subcategory-links {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 1.5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-primary);
}

.subcategory-links::-webkit-scrollbar {
  height: 8px;
}

.subcategory-links::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 0;
  border: 1px solid var(--border-color);
}

.subcategory-links::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 0;
  box-shadow:
    0 0 10px rgba(0, 230, 255, 0.6),
    inset 0 0 5px rgba(0, 230, 255, 0.4);
}

.subcategory-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 2px solid var(--border-color);
  box-shadow:
    inset 0 1px 0 rgba(157, 0, 255, 0.1),
    0 0 0 rgba(157, 0, 255, 0);
}

.subcategory-link:hover {
  background-color: var(--bg-secondary);
  color: var(--accent-purple);
  border-color: var(--accent-purple);
  box-shadow:
    var(--glow-purple),
    inset 0 0 10px rgba(157, 0, 255, 0.2);
  transform: translateY(-2px);
}

.subcategory-link:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 0 rgba(0, 0, 0, 0.5),
    0 0 5px rgba(157, 0, 255, 0.3);
}

@media (max-width: 768px) {
  .subcategory-nav {
    top: 60px;
    padding: 0.8rem 0;
  }

  .subcategory-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .product-section {
    scroll-margin-top: 160px;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  cursor: pointer;
  padding: 8px;
  box-shadow:
    inset 0 1px 0 rgba(0, 230, 255, 0.05),
    0 0 0 rgba(0, 230, 255, 0);
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  border-color: var(--border-glow);
  box-shadow:
    var(--glow-cyan),
    inset 0 0 10px rgba(0, 230, 255, 0.1);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--accent-primary);
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 0 5px rgba(0, 230, 255, 0.5);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--bg-primary);
  border-bottom: 2px solid var(--border-glow);
  padding: 16px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
  box-shadow:
    0 0 20px rgba(0, 230, 255, 0.2),
    0 4px 0 rgba(0, 0, 0, 0.8);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.2s ease;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  margin-bottom: 8px;
  box-shadow:
    inset 0 1px 0 rgba(0, 230, 255, 0.05),
    0 0 0 rgba(0, 230, 255, 0);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
  background: var(--bg-secondary);
  border-color: var(--border-glow);
  box-shadow:
    var(--glow-cyan),
    inset 0 0 15px rgba(0, 230, 255, 0.2);
  transform: translateX(4px);
}

.hero {
  background: var(--bg-card);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 4px solid var(--accent-primary);
  border-top: 4px solid var(--accent-primary);
  box-shadow: inset 0 0 30px rgba(0, 255, 65, 0.1);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  font-family: 'Press Start 2P', monospace;
  text-shadow:
    0 0 10px rgba(0, 230, 255, 1),
    0 0 20px rgba(0, 230, 255, 0.7),
    0 0 30px rgba(0, 230, 255, 0.5),
    2px 2px 0 rgba(0, 0, 0, 1);
  animation: heroGlow 2s ease-in-out infinite;
  will-change: text-shadow;
}

@keyframes heroGlow {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(0, 230, 255, 1),
      0 0 20px rgba(0, 230, 255, 0.7),
      0 0 30px rgba(0, 230, 255, 0.5),
      2px 2px 0 rgba(0, 0, 0, 1);
  }

  50% {
    text-shadow:
      0 0 15px rgba(0, 230, 255, 1),
      0 0 30px rgba(0, 230, 255, 0.9),
      0 0 50px rgba(0, 230, 255, 0.7),
      2px 2px 0 rgba(0, 0, 0, 1);
  }
}

.hero-subtitle {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px;
  line-height: 1.8;
}

.discord-notice {
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-purple);
  border-radius: 0;
  padding: 16px;
  margin: 2rem auto;
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow:
    var(--glow-purple),
    inset 0 0 20px rgba(157, 0, 255, 0.15);
  position: relative;
  overflow: hidden;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .discord-notice {
    padding: 1.2rem;
    margin: 1.5rem auto;
  }
}

.discord-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.discord-notice strong {
  color: var(--accent-purple);
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0;
  text-shadow: 0 0 5px rgba(157, 0, 255, 0.5);
}

.discord-notice p {
  color: var(--text-secondary);
  font-size: 0.6rem;
  line-height: 1.8;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-purple);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0;
  border: 2px solid var(--accent-purple);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  box-shadow:
    var(--glow-purple),
    inset 0 0 10px rgba(157, 0, 255, 0.3);
  min-height: 40px;
  font-family: 'Press Start 2P', monospace;
}

@media (max-width: 768px) {
  .discord-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }
}

.discord-btn:hover {
  background: #b000ff;
  border-color: #b000ff;
  box-shadow:
    0 0 20px rgba(157, 0, 255, 0.8),
    0 0 40px rgba(157, 0, 255, 0.5),
    inset 0 0 20px rgba(157, 0, 255, 0.4);
  transform: translateY(-2px);
}

.payment-methods {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: #2d2d2d;
  border: 4px solid;
  border-color: #555555 #222222 #222222 #555555;
  border-radius: 0;
  max-width: 400px;
  width: fit-content;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 rgba(0, 0, 0, 0.3),
    0 4px 0 rgba(0, 0, 0, 0.4);
}

.payment-label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.payment-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #3a3a3a;
  color: var(--text-secondary);
  border-radius: 0;
  font-weight: 600;
  font-size: 0.85rem;
  border: 3px solid;
  border-color: #555555 #333333 #333333 #555555;
  transition: all 0.2s ease;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 3px 0 rgba(0, 0, 0, 0.4);
}

.payment-badge:hover {
  border-color: #666666 #333333 #333333 #666666;
  color: var(--text-primary);
  background-color: #4a4a4a;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.15),
    inset 0 -3px 0 rgba(0, 0, 0, 0.4),
    0 4px 0 rgba(0, 0, 0, 0.5);
}

.icon-inline {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.3rem;
}

.payment-icon {
  width: auto;
  height: 64px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.category-card-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .payment-methods {
    margin-top: 1.2rem;
    gap: 1rem;
  }

  .payment-label {
    font-size: 0.85rem;
  }

  .payment-badge {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
}

.main {
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .main {
    padding: 2rem 0;
  }
}

.category-section {
  margin-bottom: 2rem;
  padding: 3rem 0 1rem 0;
  border-bottom: 2px solid var(--border-color);
}

.category-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  text-shadow:
    0 0 15px rgba(0, 230, 255, 0.9),
    0 0 30px rgba(0, 230, 255, 0.5);
}

.category-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .category-section {
    padding: 2rem 0 1rem 0;
    margin-bottom: 1.5rem;
  }

  .category-title {
    font-size: 2rem;
  }

  .category-subtitle {
    font-size: 1rem;
  }
}

.product-section {
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .product-section {
    margin-bottom: 3rem;
  }
}

.popular-section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.categories-overview {
  margin-top: 4rem;
  padding: 3rem 0;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 0;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(0, 230, 255, 0.05),
    0 0 0 rgba(0, 230, 255, 0);
  font-family: 'Press Start 2P', monospace;
}

.category-card:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
  box-shadow:
    var(--glow-cyan),
    inset 0 0 20px rgba(0, 230, 255, 0.15);
  transform: translateY(-4px);
}

.category-card-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(0, 230, 255, 0.7);
  font-weight: bold;
  font-family: 'Press Start 2P', monospace;
}

.category-card p {
  color: var(--text-secondary);
  font-size: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .categories-overview {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .category-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-card {
    padding: 2rem 1.5rem;
  }

  .category-card-icon {
    font-size: 3rem;
  }

  .category-card h3 {
    font-size: 1.5rem;
  }
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--accent-primary);
  font-family: 'Press Start 2P', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    0 0 10px rgba(0, 230, 255, 0.8),
    0 0 20px rgba(0, 230, 255, 0.5);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 0;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(57, 255, 20, 0.05),
    0 0 0 rgba(57, 255, 20, 0);
  font-family: 'Press Start 2P', monospace;
  will-change: transform;
}

.product-card:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-secondary);
  box-shadow:
    var(--glow-green),
    inset 0 0 20px rgba(57, 255, 20, 0.15);
  transform: translateY(-4px);
}

.savings-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent-secondary);
  color: #000000;
  padding: 6px 12px;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow:
    var(--glow-green),
    inset 0 0 10px rgba(57, 255, 20, 0.5);
  border: 2px solid var(--accent-secondary);
  z-index: 10;
  transform: rotate(3deg);
  font-family: 'Press Start 2P', monospace;
  animation: badgePulse 2s ease-in-out infinite;
  will-change: box-shadow;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow:
      0 0 10px rgba(57, 255, 20, 0.5),
      0 0 20px rgba(57, 255, 20, 0.3),
      inset 0 0 10px rgba(57, 255, 20, 0.5);
  }

  50% {
    box-shadow:
      0 0 15px rgba(57, 255, 20, 0.8),
      0 0 30px rgba(57, 255, 20, 0.5),
      inset 0 0 15px rgba(57, 255, 20, 0.7);
  }
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 0;
  background: linear-gradient(135deg, #0b0e12 0%, #141821 100%);
  padding: 16px;
  border: 2px solid var(--border-color);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  image-rendering: pixelated;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.product-image[loading="lazy"] {
  opacity: 0;
}

.product-image.loaded {
  opacity: 1;
  filter: none;
}

.product-image.loading {
  opacity: 0.5;
  filter: blur(10px);
}

.product-image.error {
  opacity: 0.6;
  filter: grayscale(100%);
}

.product-info {
  text-align: center;
}

.product-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(0, 230, 255, 0.7);
  font-family: 'Press Start 2P', monospace;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.original-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 221, 68, 0.7);
  letter-spacing: 1px;
  font-family: 'Press Start 2P', monospace;
}

.buy-btn {
  width: 100%;
  background: var(--accent-primary);
  color: #000000;
  border: 2px solid var(--accent-primary);
  padding: 12px;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 40px;
  box-shadow:
    var(--glow-cyan),
    inset 0 0 10px rgba(0, 230, 255, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Press Start 2P', monospace;
}

.buy-btn:hover {
  background: #33eeff;
  border-color: #33eeff;
  box-shadow:
    0 0 20px rgba(0, 230, 255, 1),
    0 0 40px rgba(0, 230, 255, 0.6),
    inset 0 0 20px rgba(0, 230, 255, 0.5);
  transform: translateY(-2px);
}

.buy-btn:active {
  box-shadow:
    inset 0 2px 0 rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 230, 255, 0.5);
}

@media (max-width: 768px) {
  .buy-btn {
    padding: 1rem;
    font-size: 1.05rem;
    min-height: 48px;
  }
}


#bundles .product-card {
  border: 2px solid var(--warning);
}

#bundles .product-amount {
  color: var(--warning);
}

.footer {
  background: var(--bg-primary);
  border-top: 2px solid var(--border-glow);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
  box-shadow:
    0 -2px 0 rgba(0, 230, 255, 0.3),
    0 0 20px rgba(0, 230, 255, 0.2),
    inset 0 1px 0 rgba(0, 230, 255, 0.1);
  font-family: 'Press Start 2P', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
}

.footer p {
  margin: 0.5rem 0;
  line-height: 1.8;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  border: 2px solid var(--border-glow);
  border-radius: 0;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  box-shadow:
    var(--glow-cyan),
    inset 0 0 30px rgba(0, 230, 255, 0.1),
    0 8px 40px rgba(0, 0, 0, 0.8);
  font-family: 'Press Start 2P', monospace;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 0;
  box-shadow:
    inset 0 1px 0 rgba(0, 230, 255, 0.05),
    0 0 0 rgba(0, 230, 255, 0);
  font-family: 'Press Start 2P', monospace;
}

.modal-close:hover {
  background: var(--bg-secondary);
  border-color: var(--border-glow);
  color: var(--accent-primary);
  box-shadow:
    var(--glow-cyan),
    inset 0 0 15px rgba(0, 230, 255, 0.2);
  transform: translateY(-2px);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-header .discord-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.6));
}

.modal-header h3 {
  font-size: 1.2rem;
  color: var(--accent-primary);
  text-shadow:
    0 0 10px rgba(0, 230, 255, 0.8),
    0 0 20px rgba(0, 230, 255, 0.5);
  font-family: 'Press Start 2P', monospace;
  line-height: 1.6;
}

.modal-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.7rem;
  font-family: 'Press Start 2P', monospace;
}

@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
  }

  .discord-notice {
    flex-direction: column;
    text-align: center;
  }

  .main {
    padding: 2rem 0;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .product-card {
    padding: 1.2rem;
  }

  .product-image {
    height: 140px;
  }

  .product-amount {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .discord-notice strong {
    font-size: 1rem;
  }

  .discord-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .mobile-nav-link {
    padding: 1rem;
    font-size: 1.05rem;
  }

  .discord-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer {
    padding: 1.5rem 0;
    font-size: 0.9rem;
  }
}

@media print {

  .header,
  .hero,
  .footer,
  .modal,
  .buy-btn {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loading-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  text-shadow:
    0 0 10px rgba(0, 230, 255, 0.8),
    0 0 20px rgba(0, 230, 255, 0.5),
    0 0 30px rgba(0, 230, 255, 0.3);
  animation: logoGlow 2s ease-in-out infinite;
  letter-spacing: 4px;
}

.loading-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.progress-bar-container {
  width: 100%;
  height: 24px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
      var(--accent-primary) 0%,
      var(--accent-secondary) 50%,
      var(--accent-primary) 100%);
  background-size: 200% 100%;
  animation: progressShine 2s linear infinite;
  transition: width 0.3s ease;
  box-shadow:
    0 0 10px rgba(0, 230, 255, 0.6),
    inset 0 0 5px rgba(0, 230, 255, 0.4);
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
}

@keyframes progressShine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.loading-percent {
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  color: var(--accent-primary);
  margin-top: 1rem;
  text-shadow: 0 0 10px rgba(0, 230, 255, 0.7);
  letter-spacing: 2px;
}

.loading-text::after {
  content: '';
  animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes loadingDots {

  0%,
  20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%,
  100% {
    content: '...';
  }
}

@media (prefers-contrast: high) {
  :root {
    --border-color: #ffffff;
    --text-secondary: #e0e0e0;
  }
}
