:root {
  --neon-pink: #ff2a6d;
  --neon-green: #05ffa1;
  --neon-blue: #01c4e7;
  --bg-color: #121212;
  --font-main: 'Courier New', Courier, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: #fff;
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: radial-gradient(circle at center, #1a0b2e 0%, #000000 100%);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 42, 109, 0.3);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.nav-links i {
  font-size: 1.3rem;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  width: 100%;
  position: relative;
  z-index: 10;
  flex-grow: 1;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
}

/* Branding */
.brand-logo {
  max-width: 250px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 15px rgba(5, 255, 161, 0.4));
  animation: float 6s infinite ease-in-out;
}

h1 {
  font-size: 4rem;
  letter-spacing: 0.5rem;
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--neon-pink),
    0 0 40px var(--neon-pink);
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.page-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--neon-blue);
  display: inline-block;
  padding-bottom: 10px;
  text-shadow: 0 0 15px var(--neon-blue);
}

/* Mission Statement */
.mission-statement {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(1, 196, 231, 0.2);
  line-height: 1.6;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--neon-pink);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.product-image-placeholder {
  width: 100%;
  height: 250px;
  background: #000;
  border: 2px dashed var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--neon-green);
  font-size: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.product-card .price {
  font-size: 1.2rem;
  color: var(--neon-blue);
  margin-bottom: 15px;
  font-weight: bold;
}

.product-card .description {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.btn-add {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-main);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-add:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 15px var(--neon-green);
}

/* About Page Text */
.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-box {
  max-width: 800px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Rave Balls Animation */
.rave-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out;
  z-index: 1;
  /* Behind content */
}

.ball-1 {
  width: 300px;
  height: 300px;
  background: var(--neon-blue);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.ball-2 {
  width: 400px;
  height: 400px;
  background: var(--neon-pink);
  bottom: 10%;
  right: 15%;
  animation-delay: -2s;
}

.ball-3 {
  width: 200px;
  height: 200px;
  background: var(--neon-green);
  top: 40%;
  right: 30%;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -50px);
  }

  100% {
    transform: translate(0, 0);
  }
}