/* ==========================
   GLOBAL STYLING
========================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

a, button, select {
  transition: all 0.2s ease;
}

/* ==========================
   NAVBAR
========================== */
header {
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 0, 255, 0.4);
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: #d400ff;
}

nav .bg-pink-600 {
  transition: transform 0.2s ease;
}

nav a:hover .bg-pink-600 {
  transform: scale(1.05);
}

/* ==========================
   HERO SECTION
========================== */
main h1 {
  letter-spacing: 1px;
}

main p {
  line-height: 1.6;
}

/* CTA button */
a[href="store.html"] {
  box-shadow: 0 0 8px rgba(255, 0, 200, 0.3);
}
a[href="store.html"]:hover {
  box-shadow: 0 0 14px rgba(255, 0, 200, 0.5);
}

/* ==========================
   STORE SECTION
========================== */
section h2 span {
  text-shadow: 0 0 6px rgba(255, 0, 127, 0.3);
}

section .bg-neutral-900 {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, #111, #1a1a1a);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 16px;
}

section .bg-neutral-900:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(255, 0, 127, 0.25);
}

/* Product images */
section img {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.05));
  transition: transform 0.2s ease;
}

section img:hover {
  transform: scale(1.05);
}

/* ==========================
   NEON SELECT DROPDOWN
========================== */
select {
  appearance: none;
  background: linear-gradient(145deg, #111, #1a1a1a);
  color: #fff;
  border: 1px solid rgba(255, 0, 200, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 0 8px rgba(255, 0, 200, 0.15);
  transition: all 0.25s ease;
  position: relative;
}

select:hover {
  border-color: #ff00c8;
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.25);
  background: linear-gradient(145deg, #131313, #1e1e1e);
}

select:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

option {
  background: #0a0a0a;
  color: #fff;
  padding: 10px;
}
option:hover, option:checked {
  background: linear-gradient(90deg, #ff00c8, #8a2be2);
}

/* ==========================
   BUTTONS
========================== */
button, .btn {
  border-radius: 10px;
  font-weight: 500;
}

button.buy-now {
  background: linear-gradient(90deg, #ff00c8, #8a2be2);
  box-shadow: 0 0 10px rgba(255, 0, 200, 0.25);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
button.buy-now:hover {
  box-shadow: 0 0 14px rgba(255, 0, 200, 0.35);
}

button.details {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
  transition: all 0.25s ease;
}
button.details:hover {
  background: #222;
  color: #fff;
}

/* ==========================
   MODALS (See More Details)
========================== */
.modal {
  background: #111;
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 14px;
  box-shadow: 0 0 16px rgba(255, 0, 255, 0.15);
  animation: fadeIn 0.25s ease;
}

.modal h3 {
  color: #ff00e6;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.25);
}

.modal-content {
  padding: 20px;
  background: #141414;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.1);
}

/* Close button */
.modal .close {
  color: #aaa;
  font-size: 1.3rem;
  transition: color 0.2s ease;
}
.modal .close:hover {
  color: #ff00e6;
}

/* ==========================
   CART BUTTON + MODAL
========================== */
#cartButton {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#cartButton:hover {
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(255, 0, 255, 0.35);
}

#cartModal {
  animation: fadeIn 0.2s ease;
  background: #111;
  border: 1px solid rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 18px rgba(255, 0, 255, 0.2);
}

/* Cart items */
#cartItems li {
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 8px;
}

/* Remove button */
#cartItems button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
}
#cartItems button:hover {
  color: #8a2be2;
}

/* ==========================
   FOOTER
========================== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #ff007f;
}

/* ==========================
   SCROLLBAR
========================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ff00a8;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==========================
   NAVBAR (Centered & Iconed)
========================== */
.neon-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 0, 255, 0.25);
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.05);
  backdrop-filter: blur(8px);
}

/* Center navigation links */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  list-style: none;
}

/* Navigation links styling */
.nav-center a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-center a:hover {
  color: #ff00c8;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.4);
}

/* Neon logo “GENESIS” */
.nav-left .logo {
  padding: 6px 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff00c8, #8a2be2);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.4);
  letter-spacing: 1px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.nav-left .logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* Discord icon (small & neat) */
.discord-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.nav-center a:hover .discord-icon {
  filter: drop-shadow(0 0 6px #ff00ff);
}

/* Optional: subtle glow animation for the logo */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3),
                0 0 20px rgba(138, 43, 226, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6),
                0 0 30px rgba(138, 43, 226, 0.5);
  }
}

.nav-left .logo {
  animation: pulseGlow 3s infinite alternate;
}
/* ==========================
   NAVBAR BUTTONS (Transparent Boxes)
========================== */
.nav-btn {
  padding: 10px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 0, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.15);
}

.nav-btn:hover {
  background: rgba(255, 0, 255, 0.15);
  border-color: #ff00c8;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
  transform: translateY(-2px);
}

/* Bigger Discord icon */
.nav-btn .discord-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.nav-btn:hover .discord-icon {
  filter: drop-shadow(0 0 6px #ff00ff);
}
/* NAV BUTTON BASE STYLE */
/* ==========================
   NAVBAR BUTTONS (Subtle Neon Boxes)
========================== */
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 0, 255, 0.25); /* Softer border */
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0 rgba(255, 0, 255, 0);
}

/* Gentle glow inside on hover */
.nav-btn:hover {
  box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.25),
              0 0 6px rgba(255, 0, 255, 0.25);
  border-color: rgba(255, 0, 255, 0.4);
  transform: scale(1.02);
}

/* Keep icons and emojis normal color */
.nav-btn img,
.nav-btn span,
.nav-btn svg {
  filter: none !important;
  transition: none !important;
}

/* Right-side About Us button */
.nav-right {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
}

.about-btn {
  border: 1px solid rgba(255, 0, 255, 0.4);
  padding: 8px 18px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 0, 255, 0.15);
}

/* Neon pink hover fill */
.about-btn:hover {
  background: linear-gradient(90deg, #ff00c8, #8a2be2);
  box-shadow: 0 0 16px rgba(255, 0, 255, 0.6);
  border-color: rgba(255, 0, 255, 0.6);
  color: white;
}
/* Status button styling (less bright by default) */
/* ==========================
   STATUS BUTTON (Softer Glow)
========================== */
.status-btn {
  border: 1px solid rgba(255, 0, 255, 0.25);
  padding: 8px 18px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 6px rgba(255, 0, 255, 0.15); /* softer inside */
}

/* Softer glow effect on hover */
.status-btn:hover {
  background: linear-gradient(90deg, rgba(255, 0, 200, 0.6), rgba(138, 43, 226, 0.6));
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.4), inset 0 0 8px rgba(255, 0, 255, 0.25);
  border-color: rgba(255, 0, 255, 0.4);
  color: #fff;
}


/* ==========================
   STATUS PAGE STYLING
========================== */
.status-container {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.1);
  padding: 24px 32px;
  width: 100%;
  max-width: 500px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.status-container:hover {
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.25);
}

/* Each product row */
.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item:last-child {
  border-bottom: none;
}

/* Status tags */
.status {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status.operational {
  background: rgba(0, 255, 128, 0.2);
  color: #00ff9d;
  border: 1px solid rgba(0, 255, 128, 0.4);
}

.status.maintenance {
  background: rgba(255, 255, 0, 0.15);
  color: #ffe600;
  border: 1px solid rgba(255, 255, 0, 0.4);
}

/* Center entire content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.nav-right {
  position: absolute;
  right: 40px;
}

.about-btn {
  padding: 6px 16px;
  border-radius: 12px;
  border: 1px solid #b026ff;
  background: transparent;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #ff00c8;
  box-shadow: 0 0 10px #ff00c8;
}
/* ==========================
   NAVBAR (Centered & Neon Buttons)
========================== */
.neon-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 0, 255, 0.25);
  background: rgba(10, 10, 10, 0.85);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.05);
}

/* Left logo */
.nav-left .logo {
  padding: 6px 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff00c8, #8a2be2);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.4);
  letter-spacing: 1px;
}

/* Centered nav buttons */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

/* Buttons shared style */
.nav-btn {
  padding: 8px 18px;
  border: 1px solid rgba(255, 0, 255, 0.4);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Glow inside on hover */
.nav-btn:hover {
  box-shadow: inset 0 0 15px rgba(255, 0, 255, 0.7),
              0 0 10px rgba(255, 0, 255, 0.4);
  color: #fff;
}

/* Right-aligned About Us button */
.nav-right {
  position: absolute;
  right: 40px;
}

.about-btn:hover {
  background: linear-gradient(90deg, #ff00c8, #b026ff);
  box-shadow: 0 0 12px #ff00c8, 0 0 24px rgba(255, 0, 255, 0.3);
}

/* Discord icon */
.discord-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
  vertical-align: middle;
}

.nav-btn:hover .discord-icon {
  filter: brightness(0) invert(1);
}
.nav-btn.active {
  box-shadow: inset 0 0 15px rgba(255, 0, 255, 0.7),
              0 0 10px rgba(255, 0, 255, 0.4);
  border-color: rgba(255, 0, 255, 0.6);
  background: rgba(255, 0, 255, 0.1);
}
#status-list {
  animation: fadeIn 0.6s ease;
}
@media (max-width: 768px) {
  .nav-center {
    flex-direction: column;
    gap: 0.6rem;
    position: static;
    transform: none;
  }

  .nav-right {
    position: static;
    margin-top: 8px;
  }

  .neon-nav {
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
  }
}
