/* ===================== HERO SECTION ===================== */

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* background: radial-gradient(circle at top, #0d1a2d, #030710 80%); */
  /* background-image: url('/images/17726188-27f0-4531-9dc8-288a77f71d84.webp'); */
  background-position: center;
  background-size: cover;
}

/* Floating stars */
/* .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/stars.png');
  opacity: 0.2;
  animation: floatBg 22s infinite linear;
}
@keyframes floatBg {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
} */

/* ===================== GLASS PANEL ===================== */

/* Hero Glass - Sci-Fi Gaming Theme */
.hero-glass {
  position: relative;
  width: 70%;
  max-width: 850px;
  margin: 80px auto 0;
  padding: 42px 38px;
  border-radius: 22px;

  /* Dark sci-fi gradient */
  background: linear-gradient(145deg, #0a0a0a 0%, #1f1f1f 40%, #2c2c2c 100%);
  border: 3px solid #0aff72;

  /* Glow & inner depth */
  box-shadow:
    0 0 20px rgba(0,255,120,0.5),
    inset 0 0 12px rgba(0,255,100,0.2);

  overflow: visible; /* allow images to overflow */
  z-index: 2;
}

/* Top and Bottom Accent Images */
.hero-accent {
  position: absolute;
  width: 500px;  /* adjust size */
  z-index: 1;
}

.hero-accent.top {
  top: -100px; /* slightly above the panel */
  left: 50%;
  transform: translateX(-50%);
}

.hero-accent.bottom {
  bottom: -110px; /* slightly below the panel */
  left: 50%;
  transform: translateX(-50%);
}


.hero-glass {
  width: 70%;
  max-width: 850px;
  margin: 80px auto 0;
  padding: 42px 38px;
  border-radius: 22px;

  /* Clean sci-fi gradient background */
  background: linear-gradient(145deg, #0a0a0a 0%, #1f1f1f 40%, #2c2c2c 100%);

  /* Green neon border */
  border-top: 3px solid #0aff72;
  border-bottom: 3px solid #0aff72;
  box-shadow:
    0 0 20px rgba(0,255,120,0.5),
    inset 0 0 12px rgba(0,255,100,0.2);

  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Top + Bottom subtle neon strips for gaming feel */
.hero-glass::before,
.hero-glass::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0aff72, transparent);
  opacity: 0.6;
  filter: blur(2px);
}
.hero-glass::before { top: 0; }
.hero-glass::after { bottom: 0; }

/* Shine effect across the panel */
.hero-glass .shine {
  position: absolute;
  top: 0;
  left: -130%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  transform: skewX(-18deg);
  animation: shineMove 5s infinite;
}

@keyframes shineMove {
  0% { left: -130%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

/* ===================== CONTENT ===================== */
.hero-logo {
  width: 150px;
  margin-bottom: 15px;
  animation: fadeIn 1.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #5bff63; /* Neon Green */
}

.hero-subtitle {
  font-family: 'Audiowide', cursive;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.85;
  line-height: 1.6;
  color: white;
}

/* ===================== GLASS BUTTONS ===================== */
.hero-buttons .hero-btn {
  padding: 10px 26px; /* ↓ reduced size */
  border-radius: 12px;
  font-family: 'Audiowide', cursive;
  font-size: 0.9rem; /* slightly smaller text */
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 0 6px; /* tighter spacing */

  /* MAIN GREEN WEB3 GRADIENT */
  background: linear-gradient(135deg, #0aff72 0%, #00c853 40%, #064f2a 100%);

  /* TEXT */
  color: #eaffef;
  letter-spacing: 1.2px;

  /* NEON BORDER & GLOW */
  border: 2px solid rgba(0, 255, 125, 0.55);
  box-shadow:
    0 0 10px rgba(0,255,125,0.45),
    0 0 20px rgba(0,180,80,0.35),
    inset 0 0 8px rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

/* HOVER */
.hero-buttons .hero-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #32ff9b 0%, #00e676 35%, #0a773f 100%);
  box-shadow:
    0 0 15px rgba(0,255,150,0.7),
    0 0 28px rgba(0,200,100,0.55),
    inset 0 0 10px rgba(255,255,255,0.15);
}

/* ACTIVE */
.hero-buttons .hero-btn:active {
  transform: scale(0.95);
  box-shadow:
    0 0 8px rgba(0,255,120,0.45) inset,
    0 0 12px rgba(0,200,100,0.3) inset;
}

/* ICONS */
.hero-btn i {
  margin-right: 6px;  /* smaller spacing */
  font-size: 1rem;
}


/* ===================== SIDE IMAGES ===================== */
.side-img {
  position: absolute;
  top: 60%;
  width: 460px;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
  pointer-events: none;
}

.left-img { left: -8%; }
.right-img { right: -8%; }


@media (max-width: 1395px) {
  .left-img { 
   top: 70% !important;
    left: -27% !important; 
  }

.right-img { 
  top: 70% !important;
  right: -27% !important;
 }
 
}


/* ===================== MOBILE RESPONSIVENESS ===================== */
@media (max-width: 768px) {

  .hero-section {
    height: auto;
    padding: 140px 20px 140px; /* space for bottom images */
  }

  /* HERO PANEL */
  .hero-glass {
    width: 95%;
    padding: 28px 22px;
    margin-top: 40px;
  }

  /* TEXT */
  .hero-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 90%;
    line-height: 1.4;
  }

  /* LOGO */
  .hero-logo {
    width: 100px;
    margin-bottom: 10px;
  }

  /* BUTTONS */
  .hero-buttons .hero-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
    margin: 5px 4px;
    border-radius: 10px;
  }

  /* SIDE IMAGES → BOTTOM + SMALLER */
  .side-img {
    position: absolute;
    width: 160px;     /* resized */
    opacity: 0.9;
    top: auto;
    bottom: 0px;      /* both stick to bottom */
    transform: translateY(0);
    z-index: 5;
  }

  .left-img { left: 0; }
  .right-img { right: 0; }

  /* Slight fade so they don’t overpower content */
  .side-img {
    opacity: 0.7;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .side-img {
    width: 120px; /* even smaller */
  }
  
  .hero-title {
    font-size: 1.45rem;
  }

  .hero-subtitle {
    font-size: 0.78rem;
  }

  .hero-buttons .hero-btn {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
}
