/* ======================
   GLOBAL STYLES
   ====================== */

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f05 50%, #0d0a0a 100%);
  color: #e0e0e0;
  line-height: 1.6;
  background-attachment: fixed;
}

/* ======================
   HERO SECTION
   ====================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Animated Glow Rings */
.glow-ring {
  position: absolute;
  border: 2px solid rgba(255, 140, 0, 0.15);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.glow-ring-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 25s ease-in-out infinite;
}

.glow-ring-2 {
  width: 750px;
  height: 750px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 165, 0, 0.08);
  animation: float 30s ease-in-out infinite reverse;
}

/* Animated Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent);
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}

.glow-orb-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.3), transparent);
  animation: float 12s ease-in-out infinite reverse;
}

.glow-orb-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Container */
.logo-container {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

.logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Make the logo round and add a glow outline */
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
  filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.3));
}

.logo:hover {
  filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.6));
  transform: rotateX(15deg) rotateY(-15deg) scale(1.05);
}

.logo-vps {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 900;
  color: #ff8c00;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(255, 140, 0, 1);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.1s both;
}

/* Hero Subtitle Container */
.hero-subtitle-container {
  margin-bottom: 20px;
  min-height: 40px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #ffa500;
  text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Tagline */
.hero-tagline {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(255, 140, 0, 0.8);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 140, 0, 0.15);
  color: #ffa500;
  border: 2px solid #ff8c00;
  box-shadow: inset 0 0 20px rgba(255, 140, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 140, 0, 0.25);
  box-shadow: inset 0 0 30px rgba(255, 140, 0, 0.2), 0 0 30px rgba(255, 140, 0, 0.3);
  transform: translateY(-3px);
}

/* ======================
   FEATURES SECTION
   ====================== */

.features {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(26, 15, 5, 0.5) 100%);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: rgba(255, 140, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
}

.feature-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 140, 0, 0.2), inset 0 0 20px rgba(255, 140, 0, 0.05);
  transform: translateY(-10px);
  background: rgba(255, 140, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffa500;
}

.feature-card p {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   NOTIFY SECTION
   ====================== */

.notify {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.notify-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  background: rgba(255, 140, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 25px;
  opacity: 0;
  transform: translateY(40px);
}

.notify-container.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.notify-container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.notify-container p {
  font-size: 15px;
  color: #a0a0a0;
  margin-bottom: 30px;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notify-input {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  color: #e0e0e0;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.notify-input::placeholder {
  color: #707070;
}

.notify-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 140, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

/* ======================
   FOOTER
   ====================== */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 140, 0, 0.15);
  backdrop-filter: blur(10px);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  /* Make the footer logo round and add a glow outline */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.footer-brand {
  font-size: 18px;
  font-weight: 800;
  color: #ffa500;
  letter-spacing: 2px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 13px;
  color: #808080;
  margin-bottom: 8px;
}

.footer-info a {
  color: #ffa500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #ffb319;
}

.footer-copyright {
  font-size: 12px;
  color: #606060;
  margin-top: 10px;
}

.footer-note {
  font-size: 12px;
  color: #505050;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .notify-container {
    padding: 30px 20px;
  }

  .notify-container h2 {
    font-size: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
    width: 100%;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .notify-container {
    padding: 25px 15px;
  }

  .notify-container h2 {
    font-size: 20px;
  }
}
