/* General body styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

/* Fullscreen canvas for particles */
#bgParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Top navigation bar */
.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
}

.nav-logo {
  color: #00c6ff;
  font-weight: bold;
  font-size: 1.3rem;
  text-shadow: 0 0 5px rgba(0,198,255,0.7);
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
  transition: transform 0.2s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(0,198,255,0.7);
}

/* Hero section */
.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #58a6ff;
  text-shadow: 0 2px 15px rgba(0,198,255,0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* Buy Subscription button */
.purchase-btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.purchase-btn:hover {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 10px 35px rgba(0,198,255,0.7);
}

/* Contact panel */
.contact-panel {
  max-width: 400px;
  margin: 50px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.contact-panel h2 {
  color: #00c6ff;
  text-shadow: 0 0 10px rgba(0,198,255,0.7);
  margin-bottom: 10px;
}

.contact-panel p {
  color: #ccc;
  font-size: 1rem;
}

.contact-panel .email {
  color: #58a6ff;
  font-weight: bold;
}
