/* Theme variables */
:root {
  --navbar-bg: #fff;
  --text-color: #222;
  --bg-color: #f5f5f5;
}
[data-theme="dark"] {
  --navbar-bg: #181818;
  --text-color: #f5f5f5;
  --bg-color: #222;
}
body {
  background: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  margin: 1rem auto;
  max-width: 600px;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(77, 68, 226, 0.2);
}
.navbar-left {
  display: none;
}
.bot-icon img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(77,68,226,0.10);
  background: #fff1;
}
.navbar-center {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.nav-link:hover {
  background: rgba(77, 68, 226, 0.3);
  color: #fff;
  border-color: rgba(77, 68, 226, 0.5);
  box-shadow: 0 4px 15px rgba(77, 68, 226, 0.3);
}

.nav-link.active {
  background: #fff;
  color: #4d44e2;
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  font-weight: 700;
}
.navbar-right {
  display: none;
}
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.7rem;
  color: var(--text-color);
  padding: 0.2em 0.6em;
  border-radius: 50%;
  transition: background 0.2s;
}
.theme-toggle-btn:hover {
  background: #ececff;
}
@media (max-width: 700px) {
  .navbar {
    margin: 0.5rem 1rem;
    padding: 0.8rem 1.5rem;
  }
  .navbar-center {
    gap: 1rem;
  }
  .nav-link {
    font-size: 1rem;
    padding: 0.2em 0.8em;
  }
}
/* Remove old nav styles that conflict */
nav {
  background: none;
  color: inherit;
  box-shadow: none;
  padding: 0;
  transition: none;
}
nav a {
  color: var(--text-color);
  text-decoration: none;
  margin-right: 1rem;
}
nav a:last-child {
  margin-right: 0;
}
#theme-toggle {
  color: var(--text-color);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #23232b;
  color: #fff;
  min-height: 100vh;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Remove static background */
  /* background: var(--bg-color); */
  /* Add animated gradient background */
  background: linear-gradient(120deg, #4d44e2 0%, #6a5cff 50%, #23232b 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  animation: animated-bg-gradient 8s ease-in-out infinite;
  position: relative;
}

/* Ensure the animated background covers the entire page */
html {
  background: linear-gradient(120deg, #4d44e2 0%, #6a5cff 50%, #23232b 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  animation: animated-bg-gradient 8s ease-in-out infinite;
  min-height: 100%;
}

/* Add a wrapper to ensure full coverage */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #4d44e2 0%, #6a5cff 50%, #23232b 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  animation: animated-bg-gradient 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes animated-bg-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header.hero {
  text-align: center;
  padding: 3rem 1rem 1.5rem 1rem;
}
.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff1;
}
.logo-contour {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}
.logo-contour .logo {
  position: relative;
  width: 100px;
  height: 100px;
  z-index: 2;
  border-radius: 50%;
  background: #fff1;
  margin: 0;
}
.logo-contour::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 1;
  background: none;
  border: 4px solid #4d44e2;
  box-shadow: 0 0 24px 8px #4d44e2aa;
  filter: brightness(1.2);
  animation: theme-contour-pulse 2s infinite alternate;
}
@keyframes theme-contour-pulse {
  0% { box-shadow: 0 0 24px 8px #4d44e2aa; }
  100% { box-shadow: 0 0 36px 16px #4d44e2cc; }
}
@keyframes rgb-contour-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 0 0;
  font-weight: 900;
}
.highlight {
  color: #4d44e2;
  background: #fff;
  padding: 0.1em 0.2em;
  border-radius: 0.4em;
  font-weight: 900;
}
.subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #b3b3ff;
}
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
}
.intro {
  text-align: center;
  margin: 2rem 0 2.5rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.intro:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(77, 68, 226, 0.2);
  transform: translateY(-2px);
}
.intro h2, .intro p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.2em;
  padding-right: 0.2em;
  word-break: break-word;
  max-width: 100%;
  box-sizing: border-box;
}
.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.intro p {
  font-size: 1.1rem;
  color: #e0e0ff;
}
.cta {
  text-align: center;
  margin: 3rem 0 2rem 0;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.cta:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(77, 68, 226, 0.2);
  transform: translateY(-2px);
}
.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cta-btn {
  background: #fff;
  color: #4d44e2;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.8em 2em;
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 16px 0 rgba(77,68,226,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  margin-top: 0.8rem;
  cursor: pointer;
}
.cta-btn:hover {
  background: #372fc2;
  color: #fff;
  transform: scale(1.05);
}
.cta-support-link {
  background: #fff;
  color: #4d44e2;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.8em 2em;
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 16px 0 rgba(77,68,226,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  margin-left: 1rem;
  cursor: pointer;
}
.cta-support-link:hover {
  background: #372fc2;
  color: #fff;
  transform: scale(1.05);
}
footer {
  text-align: center;
  padding: 1.5rem 1rem 1.2rem 1rem;
  color: #b3b3ff;
  font-size: 1rem;
}
footer a {
  color: #b3b3ff !important;
  text-decoration: underline;
}
.features {
  margin: 2.5rem 0 2rem 0;
  text-align: center;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.feature-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #f3f4f6;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(77,68,226,0.10);
  padding: 1.5rem 1.2rem;
  max-width: 300px;
  min-width: 220px;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #23232b;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(77,68,226,0.18);
}
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.feature-card p {
  margin: 0;
  color: #4d44e2;
}
.how-it-works {
  margin: 2.5rem 0 2rem 0;
  text-align: center;
}
.how-it-works h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.how-it-works ol {
  display: inline-block;
  text-align: left;
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 1.2rem 2rem;
  color: #23232b;
  box-shadow: 0 2px 16px 0 rgba(77,68,226,0.10);
  margin: 0 auto;
}
.how-it-works li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  color: #4d44e2;
}
@media (max-width: 900px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    max-width: 95vw;
  }
  .how-it-works ol {
    padding: 1rem 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  .logo {
    width: 70px;
    height: 70px;
  }
  .intro h2, .cta h2 {
    font-size: 1.1rem;
  }
  .intro {
    margin: 1.2rem 0 1.5rem 0;
    padding: 1rem;
  }
  .cta {
    margin: 1.2rem 0 1rem 0;
    padding: 1rem;
  }
  .cta-btn, .cta-support-link {
    display: block;
    width: 100%;
    margin: 0.7rem 0 0 0;
    font-size: 1rem;
    padding: 1em 0;
    box-sizing: border-box;
  }
  .cta-support-link {
    margin-left: 0;
  }
  main {
    padding: 0 0.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  footer {
    padding: 1rem 0.5rem 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .intro h2 {
    margin-bottom: 1.2rem;
  }
  .intro p {
    margin-top: 1.2rem;
  }
}
.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(120deg, #23232b 0%, #4d44e2 100%);
  animation: gradientMove 8s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
body > *:not(.animated-bg) {
  position: relative;
  z-index: 1;
}
.tagline {
  font-size: 1.1rem;
  color: #b3b3ff;
  margin-top: 0.7rem;
  font-weight: 500;
}
.cta-subtext {
  color: #b3b3ff;
  font-size: 1rem;
  margin-top: 0.7rem;
}
.trust {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  font-size: 1.1rem;
  color: #b3b3ff;
}
.notification-bar {
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.notification-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.premium-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.premium-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-align: center;
}
.premium-highlight {
  color: #4d44e2;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-subtitle {
  font-size: 1.2rem;
  color: #b3b3ff;
  margin-bottom: 2.5rem;
  text-align: center;
}
.pricing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem 0;
  max-width: 1200px;
  width: 100%;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #4d44e2;
}
.duration {
  font-size: 1rem;
  font-weight: 400;
  color: #b3b3ff;
  margin-bottom: 1.5rem;
}
.btn {
  background: #4d44e2;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8em 2em;
  border: none;
  border-radius: 2em;
  text-decoration: none;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn:hover {
  background: #372fc2;
  transform: scale(1.05);
}
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #b3b3ff;
  font-size: 1rem;
}
.features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5em;
  position: relative;
}
.features li:before {
  content: '✓';
  color: #4d44e2;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.pricing-card-link {
  color: #b3b3ff;
  font-size: 0.98rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.5rem;
}
.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.3em 1.2em;
  border-radius: 2em;
  box-shadow: 0 2px 8px 0 rgba(77,68,226,0.10);
  letter-spacing: 0.01em;
}
.pricing-card.popular {
  border: 2px solid #4d44e2;
  background: rgba(77, 68, 226, 0.1);
}

.compare-title {
  font-size: 2rem;
  font-weight: 900;
  margin: 2.5rem 0 1.2rem 0;
  text-align: center;
}
.compare-table-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.compare-table {
  width: 100%;
  max-width: 700px;
  border-collapse: collapse;
  background: #23232b;
  color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(77,68,226,0.10);
}
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 1.05rem;
}
.compare-table th {
  background: #181818;
  color: #b3b3ff;
  font-weight: 700;
}
.compare-table .premium-col {
  background: #4d44e2;
  color: #fff;
}
.compare-table tr:nth-child(even) td {
  background: #23233b;
}
.compare-table tr:nth-child(odd) td {
  background: #23232b;
}
@media (max-width: 1000px) {
  .pricing-section {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .pricing-cards {
    gap: 1.5rem;
  }
  .pricing-card {
    padding: 1.5rem;
  }
  .price {
    font-size: 2rem;
  }
}
