/* Neon Theme CSS */
/* Neon Theme CSS */
:root {
  --neon-purple: #9b87f5;
  --neon-blue: #0070F3;
  --neon-cyan: #00DFD8;
  --neon-pink: #FF4D4D;
  --neon-yellow: #F5A623;
  --neon-dark: #0F0F12;
  --neon-darker: #090909;
  --neon-darkgray: #151518;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--neon-dark);
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 112, 243, 0.6), 0 0 12px rgba(0, 112, 243, 0.4);
  text-decoration: none;
}

.nav-links {
  display: none;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.discord-btn {
  background: linear-gradient(to right, var(--neon-purple), var(--neon-blue));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(155, 135, 245, 0.5), 0 0 20px rgba(155, 135, 245, 0.3);
}

.menu-btn {
  display: block;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  background-color: rgba(9, 9, 9, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0), var(--neon-dark)),
    repeating-linear-gradient(
      to right,
      #151518 1px,
      transparent 1px
    ),
    repeating-linear-gradient(
      to bottom,
      #151518 1px,
      transparent 1px
    );
  background-size: cover, 40px 40px, 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 10%;
  width: 8rem;
  height: 8rem;
  background-color: rgba(0, 112, 243, 0.2);
  border-radius: 50%;
  filter: blur(5rem);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 10%;
  width: 8rem;
  height: 8rem;
  background-color: rgba(255, 77, 77, 0.2);
  border-radius: 50%;
  filter: blur(5rem);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  margin-left: 0.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero h1 .neon-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 8px rgba(0, 112, 243, 0.6), 0 0 12px rgba(0, 112, 243, 0.4);
}

.hero h1 .neon-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 8px rgba(155, 135, 245, 0.6), 0 0 12px rgba(155, 135, 245, 0.4);
}

.hero p {
  font-size: 1.125rem;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.buttons {
  margin-bottom: 4rem;
}

.primary-btn {
  background: linear-gradient(to right, var(--neon-purple), var(--neon-blue));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  margin: 0.5rem;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(155, 135, 245, 0.5), 0 0 20px rgba(155, 135, 245, 0.3);
}

.secondary-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
  margin: 0.5rem;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}

.glass-card {
  background-color: rgba(21, 21, 24, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.glass-card:hover {
  transform: translateY(-0.5rem);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.blue-icon {
  background-color: rgba(0, 112, 243, 0.1);
  color: var(--neon-blue);
}

.purple-icon {
  background-color: rgba(155, 135, 245, 0.1);
  color: var(--neon-purple);
}

.cyan-icon {
  background-color: rgba(0, 223, 216, 0.1);
  color: var(--neon-cyan);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #aaa;
  font-size: 0.875rem;
}

/* Section styling */
section {
  padding: 5rem 0;
  position: relative;
}

.section-darker {
  background-color: var(--neon-darker);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: #aaa;
}

.neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 223, 216, 0.6), 0 0 12px rgba(0, 223, 216, 0.4);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-desc {
  color: #ddd;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-icon {
  margin-right: 0.5rem;
  color: var(--neon-purple);
}

/* Features section */
.features-section .features-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .features-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats-card {
  margin-top: 6rem;
  background-color: rgba(21, 21, 24, 0.8);
  border: 1px solid rgba(155, 135, 245, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #aaa;
}

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--neon-purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.price-card-highlight {
  background-image: linear-gradient(to bottom right, rgba(21, 21, 24, 0.9), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(155, 135, 245, 0.3);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-desc {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-period {
  color: #aaa;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-feature {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
}

.price-feature-icon {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* Download section */
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.download-card {
  padding: 1.5rem;
}

.download-header {
  display: flex;
  margin-bottom: 1.5rem;
}

.download-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(21, 21, 24, 0.8);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.download-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.download-meta {
  font-size: 0.875rem;
  color: #aaa;
}

.download-desc {
  color: #ddd;
  margin-bottom: 1.5rem;
}

/* Payment section */
.payment-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
}

.payment-header {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(155, 135, 245, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--neon-purple);
}

.payment-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment-desc {
  color: #ddd;
}

.payment-details {
  margin-bottom: 2rem;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paypal-button {
  display: block;
  width: 100%;
  background-color: #0070ba;
  color: #fff;
  padding: 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.paypal-button:hover {
  background-color: #005ea6;
}

.payment-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 1rem;
}

/* Testimonials section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
}

.rating {
  display: flex;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--neon-yellow);
  margin-right: 0.25rem;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
}

.author-title {
  font-size: 0.875rem;
  color: #aaa;
}

.cta-card {
  margin-top: 5rem;
  text-align: center;
  padding: 2.5rem;
  background-image: linear-gradient(to bottom right, rgba(21, 21, 24, 0.9), rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(0, 112, 243, 0.3);
  border-radius: 1rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0, 112, 243, 0.6), 0 0 12px rgba(0, 112, 243, 0.4);
}

.cta-text {
  font-size: 1.125rem;
  color: #ddd;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background-color: var(--neon-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-purple);
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(155, 135, 245, 0.6), 0 0 12px rgba(155, 135, 245, 0.4);
}

.footer-about {
  color: #aaa;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #aaa;
  transition: color 0.3s;
}

.social-link:hover {
  color: #fff;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: #aaa;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .copyright {
    margin-bottom: 0;
  }
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: #aaa;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

/* Icons */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

.icon-sm {
  width: 1em;
  height: 1em;
}

.icon-md {
  width: 1.5em;
  height: 1.5em;
}

.icon-lg {
  width: 2em;
  height: 2em;
}
.custom-link {
  color: #9b87f5;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease; 
  text-shadow: 0 0 8px rgba(155, 135, 245, 0.6), 0 0 12px rgba(155, 135, 245, 0.4);
  font-size: 1.125rem; 
}

.custom-link:hover {
  color: #5c3de4;
  text-decoration: underline;
}
.custom-link:focus {
  outline: 2px solid #9b87f5;
  outline-offset: 2px;
}
.custom-link:active {
  color: #5c3de4;
  text-shadow: 0 0 8px rgba(155, 135, 245, 0.6), 0 0 12px rgba(155, 135, 245, 0.4);
}

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(0, 195, 255, 0.15), transparent 60%);
  transition: background-position 0.1s ease;
}


#ticketForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}