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

body {
  background: #0b0b0b;
  color: #e0e0e0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px; /* space for fixed navbar */
}

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: #1a1a1a; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; flex-wrap: wrap;
}
.logo { color: #a020f0; font-weight: bold; font-size: 1.2rem; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: #e0e0e0; transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover { color: #a020f0; }

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2a003f, #0b0b0b, #3d0066);
  text-align: left;
  padding: 2rem;
  gap: 3rem;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 3rem;
  color: #a020f0;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero .subtext {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.hero-image img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(160,32,240,0.6);
}


/* Plans Section */
.plans { padding: 4rem 2rem; background: #111; text-align: center; }
.plans h2 { color: #a020f0; margin-bottom: 1rem; font-size: 2rem; }
.plans .intro-text {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; justify-content: center; align-items: start;
}
.plan-card {
  background: #1a1a1a; padding: 2rem; border-radius: 12px;
  border: 1px solid rgba(160,32,240,0.4);
  box-shadow: 0 0 15px rgba(160,32,240,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(160,32,240,0.6); }
.plan-card h3 { color: #a020f0; margin-bottom: 1rem; font-size: 1.6rem; }
.plan-card .price { font-size: 1rem; color: #fff; margin-left: 0.5rem; }
.plan-card .plan-desc { color: #bbb; margin-bottom: 1rem; font-size: 1rem; line-height: 1.5; }
.plan-card ul { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }
.plan-card ul li { margin: 0.5rem 0; color: #ddd; }

/* Premium Highlight */
.plan-card.premium {
  border: 2px solid #a020f0;
  box-shadow: 0 0 30px rgba(160,32,240,0.7);
  transform: scale(1.02);
}

/* Affiliates Section */
.affiliates {
  padding: 4rem 2rem;
  background: #0b0b0b;
  text-align: center;
}

.affiliates h2 {
  color: #a020f0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.affiliates .intro-text {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.affiliate-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(160,32,240,0.3);
  box-shadow: 0 0 15px rgba(160,32,240,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.affiliate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(160,32,240,0.5);
}

.affiliate-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border: 2px solid rgba(160,32,240,0.4);
}

.affiliate-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.affiliate-card h3 {
  color: #a020f0;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.affiliate-card .affiliate-desc {
  color: #bbb;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.affiliate-link {
  display: inline-block;
  background: #a020f0;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.affiliate-link:hover {
  background: #7a0fcf;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(160,32,240,0.6);
}


/* Shared button style */
.select-btn,
.explore-btn {
  display: inline-block;
  background: #a020f0;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

/* Full-width only for plan buttons */
.select-btn {
  width: 100%;
}

/* Hover effect */
.select-btn:hover,
.explore-btn:hover {
  background: #7a0fcf;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(160,32,240,0.8);
}


/* Footer */
footer { text-align: center; padding: 1rem; background: #1a1a1a; color: #aaa; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 1s ease; }
.fade-in.active { opacity: 1; transform: translateY(0); }
.fade-in.delay { transition-delay: 0.5s; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.clicked { transform: scale(0.95); }

/* Staggered animations for affiliate cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Floating animation for hero content */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  animation: float 3s ease-in-out infinite;
}

/* Pulse animation for buttons */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(160, 32, 240, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(160, 32, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(160, 32, 240, 0); }
}

.explore-btn:hover,
.select-btn:hover,
.affiliate-link:hover {
  animation: pulse 1.5s infinite;
}

/* Glow animation for premium card */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 30px rgba(160,32,240,0.7); }
  50% { box-shadow: 0 0 40px rgba(160,32,240,1); }
}

.plan-card.premium {
  animation: glow 2s ease-in-out infinite;
}

/* Rotate animation for affiliate logos on hover */
.affiliate-logo {
  transition: transform 0.5s ease;
}

.affiliate-card:hover .affiliate-logo {
  transform: rotate(360deg);
}

/* Gradient text animation for headings */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  background: linear-gradient(90deg, #a020f0, #ff00ff, #a020f0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

/* Shimmer effect for plan cards */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(160,32,240,0.2), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

.plan-card {
  position: relative;
  overflow: hidden;
}

/* Scale up animation for cards on hover */
.plan-card,
.affiliate-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.plan-card:hover,
.affiliate-card:hover {
  filter: brightness(1.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.explore-btn,
.login-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn {
  background: #a020f0;
  color: #fff;
}

.explore-btn:hover {
  background: #8a1cd1;
}

.login-btn {
  background: #333;
  color: #fff;
}

.login-btn:hover {
  background: #555;
}
.dashboard-btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  color: #000;
  transition: background 0.3s ease, color 0.3s ease;
}

.dashboard-btn:hover {
  background: #a020f0;
  color: #fff;
}

/* Login form fields */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form .form-group label {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}

.login-form .form-group input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid rgba(160,32,240,0.4);
  background: #0b0b0b;
  color: #fff;
}

.login-form .form-group input::placeholder {
  color: #888;
}
.signup-btn {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin-left: 10px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}
.signup-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #66BB6A, #388E3C);
}
.addbot-btn {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: #fff;
  border: none;
  padding: 14px 24px;
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.7);
  transition: all 0.3s ease;
}

.addbot-btn:hover {
  background: linear-gradient(135deg, #4752C4, #5865F2);
  box-shadow: 0 0 25px rgba(88, 101, 242, 1);
  transform: scale(1.05);
}




/* Responsive */
@media (max-width: 600px) { .nav-links a { font-size: 0.9rem; } }
