@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

:root {
  --bg-dark: #0d0d0d;
  --neon-blue: #00ffff;
  --neon-pink: #ff00cc;
  --text-light: #eeeeee;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Orbitron', sans-serif;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-container {
  position: relative;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1598970434795-0c54fe7c0642?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.hero-content {
  padding: 0 60px; /* ✅ Extra padding for mobile */
  box-sizing: border-box;
  text-align: center;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
}

/* Logo */
.app-logo {
  width: 130px;
  max-width: 70%;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Title & Subtitle */
.title {
  font-size: clamp(2rem, 6vw, 4rem); /* ✅ Responsive sizing */
  color: var(--neon-blue);
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
  word-wrap: break-word; /* ✅ In case it needs to wrap */
  text-align: center;     /* ✅ Center on small screens */
  max-width: 90vw;        /* ✅ Avoid overflow */
  margin: 0 auto;
}


.subtitle {
  font-size: 1.1rem;
  margin: 20px 0;
  color: var(--text-light);
  opacity: 0.8;
}

/* Start Button */
.start-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  background-color: transparent;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Pulse animation */
.pulse {
  animation: pulseGlow 0.6s infinite alternate;
}

@keyframes pulseGlow {
  from {
    box-shadow: 0 0 10px var(--neon-pink);
  }
  to {
    box-shadow: 0 0 25px var(--neon-pink);
  }
}

/* ===== Branding Sticker ===== */
.branding-sticker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e1e2f;
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-size: 0.9rem;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.diamond-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

/* Branding text */
.branding-text strong {
  color: #00d4ff;
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #080808;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .title {
    font-size: 1.8rem; /* Shrinks the heading text */
    line-height: 1.2;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .start-btn {
    font-size: 0.9rem;
    padding: 10px 22px;
  }

  .app-logo {
    width: 100px; /* Smaller logo on mobile */
  }

  .branding-sticker {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .diamond-logo {
    width: 20px;
    height: 20px;
  }
}
