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

html {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
}

body {
  background: #0f1419;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Particle Network Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
}

.nav-container {
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(64, 224, 255, 0.2);
  border-radius: 16px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-shadow: 0 8px 32px rgba(64, 224, 255, 0.1);
}

.nav-logo h2 {
  color: #40e0ff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(64, 224, 255, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 0;
  background: #40e0ff;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(64, 224, 255, 0.5);
}

.nav-link:hover {
  color: #40e0ff;
  text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.nav-link:hover::after {
  width: 100%;
}

.get-key-btn {
  background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(64, 224, 255, 0.3);
  letter-spacing: 0.5px;
}

.get-key-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64, 224, 255, 0.4);
  background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
}

.get-key-btn:active {
  transform: translateY(0);
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #40e0ff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(64, 224, 255, 0.3);
}

/* Main Content */
.content {
  padding-top: 120px;
  padding: 120px 20px 20px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.welcome-section {
  margin-bottom: 4rem;
}

.welcome-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #40e0ff 0%, #ffffff 50%, #40e0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(64, 224, 255, 0.2);
}

.welcome-subtitle-main {
  font-size: 2.2rem;
  font-weight: 700;
  color: #40e0ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(64, 224, 255, 0.3);
}

.welcome-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.main-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.get-script-btn {
  background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.get-script-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(64, 224, 255, 0.4);
  background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
}

.script-icon {
  width: 24px;
  height: 24px;
}

.script-embed {
  width: 100%;
  max-width: 700px;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(64, 224, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(64, 224, 255, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.script-embed.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.embed-header {
  background: rgba(64, 224, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(64, 224, 255, 0.2);
}

.embed-title {
  color: #40e0ff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.copy-btn {
  background: transparent;
  border: 1px solid rgba(64, 224, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(64, 224, 255, 0.1);
  border-color: #40e0ff;
  color: #40e0ff;
  box-shadow: 0 0 10px rgba(64, 224, 255, 0.2);
}

.copy-icon {
  width: 16px;
  height: 16px;
}

.code-container {
  padding: 24px;
}

.code-content {
  background: rgba(10, 15, 20, 0.8);
  color: #e6f3ff;
  padding: 20px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre-wrap;
  border: 1px solid rgba(64, 224, 255, 0.2);
}

.key-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

.features-section {
  margin-top: 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.features-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #40e0ff 0%, #ffffff 50%, #40e0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(64, 224, 255, 0.3);
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 100%;
}

.features-row-1 {
  display: flex;
  overflow: hidden;
  gap: 6rem;
  margin-bottom: 2rem;
  position: relative;
  mask: linear-gradient(to right, transparent 0%, white 20%, white 80%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, white 20%, white 80%, transparent 100%);
  padding: 1rem 0;
}

.features-row-1 .feature-box {
    min-width: 320px;
    flex-shrink: 0;
    animation: trainMove 15s linear infinite;
    margin: 0 1.5rem;
  }

  .features-row-1 .feature-box:nth-child(2) {
    animation-delay: -2.5s;
  }

  .features-row-1 .feature-box:nth-child(3) {
    animation-delay: -5s;
  }

  .features-row-1 .feature-box:nth-child(4) {
    animation-delay: -7.5s;
  }

  .features-row-1 .feature-box:nth-child(5) {
    animation-delay: -10s;
  }

  .features-row-1 .feature-box:nth-child(6) {
    animation-delay: -12.5s;
  }

.features-row-2 {
  display: none;
}

@keyframes trainMove {
    0% {
      transform: translateX(-100%);
      opacity: 1;
    }
    100% {
      transform: translateX(100vw);
      opacity: 1;
    }
  }

.feature-box {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(64, 224, 255, 0.25);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(64, 224, 255, 0.15),
    0 0 20px rgba(64, 224, 255, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(64, 224, 255, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, 
      transparent 0%, 
      rgba(64, 224, 255, 0.03) 50%, 
      transparent 100%
    );
  pointer-events: none;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(64, 224, 255, 0.2),
    inset 0 1px 0 rgba(64, 224, 255, 0.15);
  border-color: rgba(64, 224, 255, 0.4);
  background: linear-gradient(145deg, rgba(20, 25, 35, 0.9) 0%, rgba(30, 40, 55, 0.9) 100%);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(64, 224, 255, 0.3);
  color: #ffffff;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(64, 224, 255, 0.1);
}

.feature-description {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Games and Pricing Container */
.games-pricing-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Supported Games Section */
.supported-games {
  flex: 1;
  min-width: 0;
}

.supported-games-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(64, 224, 255, 0.2);
}

.games-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.game-card {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(64, 224, 255, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(64, 224, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 380px;
  max-width: 450px;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(64, 224, 255, 0.2),
    inset 0 1px 0 rgba(64, 224, 255, 0.15);
  border-color: rgba(64, 224, 255, 0.4);
}

.game-icon {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
  border: 3px solid rgba(64, 224, 255, 0.4);
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.game-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.join-game-btn {
  background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(64, 224, 255, 0.3);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.join-game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(64, 224, 255, 0.4);
  background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
}

.game-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.features-btn {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  border: 1px solid rgba(64, 224, 255, 0.3);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.features-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
    background: linear-gradient(135deg, #34495e 0%, #40e0ff 100%);
    border-color: rgba(64, 224, 255, 0.5);
  }

/* Section Separator */
.section-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(64, 224, 255, 0.5) 50%, transparent 100%);
  margin: 4rem 0 3rem;
  position: relative;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #40e0ff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(64, 224, 255, 0.6);
}

/* Vertical Separator */
.section-separator-vertical {
  width: 1px;
  height: 400px;
  background: linear-gradient(180deg, transparent 0%, rgba(64, 224, 255, 0.5) 50%, transparent 100%);
  position: relative;
  flex-shrink: 0;
}

.section-separator-vertical::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #40e0ff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(64, 224, 255, 0.6);
}

/* Pricing Section */
.pricing-section {
  flex: 1;
  min-width: 0;
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(64, 224, 255, 0.2);
  text-align: center;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(64, 224, 255, 0.25);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(64, 224, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-width: 380px;
  max-width: 450px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(64, 224, 255, 0.2),
    inset 0 1px 0 rgba(64, 224, 255, 0.15);
  border-color: rgba(64, 224, 255, 0.4);
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(64, 224, 255, 0.2);
}

.pricing-plan {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #40e0ff 0%, #ffffff 50%, #40e0ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

.feature-check {
  width: 20px;
  height: 20px;
  color: #40e0ff;
  flex-shrink: 0;
}

.purchase-btn {
  background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64, 224, 255, 0.4);
  background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
}

.purchase-icon {
  width: 20px;
  height: 20px;
}

/* Footer Styles */
.footer {
  margin-top: 4rem;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(64, 224, 255, 0.2);
  position: relative;
}

/* Removed footer separator */
.footer-removed::before {
  content: '';
  position: absolute;
```text
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(64, 224, 255, 0.5) 50%, transparent 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background: #40e0ff;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #40e0ff;
  text-shadow: 0 0 8px rgba(64, 224, 255, 0.3);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-link.disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.footer-link.disabled::after {
  display: none;
}

.footer-trademark {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-right {
  display: flex;
  align-items: center;
}

.discord-btn {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(88, 101, 242, 0.4);
  background: linear-gradient(135deg, #6A7BF5 0%, #5865F2 100%);
}

.discord-icon {
    width: 18px;
    height: 18px;
  }

  /* Assistance Section */
  .assistance-section {
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(64, 224, 255, 0.2);
    backdrop-filter: blur(20px);
  }

  .assistance-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .assistance-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #40e0ff 0%, #ffffff 50%, #40e0ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 30px rgba(64, 224, 255, 0.3);
  }

  .assistance-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
  }

  .assistance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .assistance-card {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.25);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
  }

  .assistance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(64, 224, 255, 0.2);
    border-color: rgba(64, 224, 255, 0.4);
  }

  .assistance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
    color: #ffffff;
  }

  .assistance-icon svg {
    width: 32px;
    height: 32px;
  }

  .assistance-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
  }

  .assistance-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
  }

  .assistance-btn {
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
  }

  .assistance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(64, 224, 255, 0.4);
    background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
  }

  .assistance-btn.disabled {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
    opacity: 0.6;
  }

  .assistance-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  }

  .discord-assistance-btn {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3);
  }

  .discord-assistance-btn:hover {
    background: linear-gradient(135deg, #6A7BF5 0%, #5865F2 100%);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.4);
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .assistance-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .info-icon {
    width: 20px;
    height: 20px;
    color: #40e0ff;
  }

  @media screen and (max-width: 768px) {
    .assistance-section {
      margin-top: 2rem;
      padding: 2rem 1rem;
    }

    .assistance-title {
      font-size: 2.2rem;
    }

    .assistance-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .assistance-options {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .assistance-card {
      padding: 2rem;
      min-width: 0;
    }

    .assistance-info {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .info-item {
      font-size: 0.9rem;
    }
  }

  /* Modal Styles */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  .chat-modal-content {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-header, .chat-header {
    background: rgba(64, 224, 255, 0.1);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(64, 224, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-header h3, .chat-header h3 {
    color: #40e0ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
  }

  .close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #40e0ff;
  }

  .close-btn svg {
    width: 16px;
    height: 16px;
  }

  .modal-body {
    padding: 24px;
  }

  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .login-form label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .login-form input {
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .login-form input:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 0 2px rgba(64, 224, 255, 0.2);
  }

  .login-btn {
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(64, 224, 255, 0.3);
    margin-top: 0.5rem;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.4);
    background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
  }

  /* Chat Styles */
  .chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .system-message, .user-message {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
  }

  .system-message {
    background: rgba(64, 224, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.2);
    align-self: center;
    text-align: center;
  }

  .user-message {
    background: rgba(40, 224, 255, 0.1);
    border: 1px solid rgba(40, 224, 255, 0.2);
    align-self: flex-end;
  }

  .system-message p, .user-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }

  .chat-input-container {
    padding: 20px;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .chat-input-container input {
    flex: 1;
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .chat-input-container input:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 0 2px rgba(64, 224, 255, 0.2);
  }

  .send-btn {
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(64, 224, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.4);
    background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
  }

  .send-btn svg {
    width: 16px;
    height: 16px;
  }

  @media screen and (max-width: 768px) {
    .modal-content, .chat-modal-content {
      width: 95%;
      margin: 20px;
    }

    .chat-modal-content {
      height: 80vh;
    }
  }

  /* Support Management Panel */
  .support-panel {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 400px;
    height: 600px;
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    flex-direction: column;
    overflow: hidden;
  }

  .support-panel.visible {
    display: flex;
  }

  .support-panel.minimized {
    height: 60px;
  }

  .support-panel.minimized .support-panel-content {
    display: none;
  }

  .support-panel-header {
    background: rgba(64, 224, 255, 0.1);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(64, 224, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .support-panel-header h3 {
    color: #40e0ff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
  }

  .minimize-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .minimize-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #40e0ff;
  }

  .minimize-btn svg {
    width: 16px;
    height: 16px;
  }

  .support-panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
  }

  .no-chats {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 20px;
  }

  .chat-item {
    background: rgba(10, 15, 20, 0.6);
    border: 1px solid rgba(64, 224, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .chat-item:hover {
    background: rgba(64, 224, 255, 0.1);
    border-color: rgba(64, 224, 255, 0.4);
  }

  .chat-item.active {
    background: rgba(64, 224, 255, 0.2);
    border-color: #40e0ff;
  }

  .chat-item-user {
    color: #40e0ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .chat-item-preview {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chat-item-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 4px;
  }

  .active-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
  }

  .chat-user-info {
    background: rgba(64, 224, 255, 0.1);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(64, 224, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .chat-user-info span {
    color: #40e0ff;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .close-chat-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .close-chat-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff4757;
  }

  .admin-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .admin-message, .user-message-admin {
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 85%;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .admin-message {
    background: rgba(64, 224, 255, 0.1);
    border: 1px solid rgba(64, 224, 255, 0.2);
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.9);
  }

  .user-message-admin {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    color: rgba(255, 255, 255, 0.9);
  }

  .admin-chat-input {
    padding: 12px 16px;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .admin-chat-input input {
    flex: 1;
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }

  .admin-chat-input input:focus {
    outline: none;
    border-color: #40e0ff;
    box-shadow: 0 0 0 2px rgba(64, 224, 255, 0.2);
  }

  .admin-send-btn {
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(64, 224, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .admin-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64, 224, 255, 0.4);
    background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
  }

  .admin-send-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Purchase Modal Improvements */
  .payment-method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #40e0ff 0%, #ffffff 50%, #40e0ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
  }

  .payment-btn {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    border: 2px solid rgba(64, 224, 255, 0.3);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    max-width: 280px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    text-align: center;
  }

  .payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(64, 224, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .payment-btn:hover::before {
    opacity: 1;
  }

  .payment-btn:hover {
    border-color: #40e0ff;
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.9) 0%, rgba(30, 40, 55, 0.9) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(64, 224, 255, 0.25);
  }

  .payment-btn.selected {
    border-color: #40e0ff;
    background: linear-gradient(145deg, rgba(64, 224, 255, 0.2) 0%, rgba(40, 224, 255, 0.1) 100%);
    box-shadow: 0 8px 24px rgba(64, 224, 255, 0.3);
  }

  .payment-icon {
    width: 40px;
    height: 40px;
    color: #40e0ff;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(64, 224, 255, 0.4));
  }

  .payment-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    align-items: center;
    text-align: center;
  }

  .payment-method {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
  }

  .payment-desc {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
  }

  .payment-amount {
    color: #40e0ff;
    font-weight: 800;
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.4);
    letter-spacing: -0.5px;
    flex-shrink: 0;
    margin-top: auto;
  }

  .terms-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(64, 224, 255, 0.2);
  }

  .terms-checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .terms-checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #40e0ff;
  }

  .terms-checkbox-container label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
  }

  .terms-link {
    color: #40e0ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .terms-link:hover {
    text-shadow: 0 0 8px rgba(64, 224, 255, 0.5);
    text-decoration: underline;
  }

  .continue-btn {
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(64, 224, 255, 0.3);
    width: 100%;
    letter-spacing: 0.5px;
  }

  .continue-btn:enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(64, 224, 255, 0.4);
    background: linear-gradient(135deg, #5ae4ff 0%, #3498db 100%);
  }

  .continue-btn:disabled {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
  }

  @media screen and (max-width: 768px) {
    .support-panel {
      width: calc(100% - 40px);
      right: 20px;
      left: 20px;
      top: 100px;
      height: 500px;
    }

    .payment-buttons {
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
    }

    .payment-btn {
      max-width: 100%;
      min-height: 160px;
      padding: 2rem 1.5rem;
    }
  }

  /* Notification Styles */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
  }

  .notification.show {
    transform: translateX(0);
    opacity: 1;
  }

  .notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .notification-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
  }

  .notification-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
  }

  .notification-info {
    border-color: rgba(64, 224, 255, 0.5);
    box-shadow: 0 8px 32px rgba(64, 224, 255, 0.2);
  }

  .notification-success {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
  }

  .notification-warning {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.2);
  }

  .notification-error {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
  }

  /* Terms Modal Styles */
  .terms-modal {
    max-width: 600px;
    max-height: 80vh;
  }

  .terms-content {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
  }

  .terms-text h4 {
    color: #40e0ff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
  }

  .terms-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(64, 224, 255, 0.1);
  }

  .terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .terms-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: -0.2px;
  }

  .terms-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Features Modal Styles */
  .features-modal-content {
    max-width: 900px;
    max-height: 85vh;
    width: 95%;
  }

  .features-modal-body {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
  }

  .features-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .feature-card-modal {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .feature-card-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(64, 224, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .feature-card-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(64, 224, 255, 0.2);
    border-color: rgba(64, 224, 255, 0.4);
  }

  .feature-card-modal.coming-soon {
    opacity: 0.7;
    border-color: rgba(251, 191, 36, 0.4);
  }

  .feature-card-modal.coming-soon::before {
    background: radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  }

  .feature-card-modal.coming-soon:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
  }

  .feature-icon-modal {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #40e0ff 0%, #2980b9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(64, 224, 255, 0.3);
    color: #ffffff;
  }

  .feature-card-modal.coming-soon .feature-icon-modal {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
  }

  .feature-icon-modal svg {
    width: 28px;
    height: 28px;
  }

  .feature-card-modal h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
  }

  .feature-card-modal.coming-soon h4 {
    color: #f1c40f;
  }

  .feature-card-modal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }

  /* Scrollbar Styles for Modal Content */
  .terms-content::-webkit-scrollbar,
  .features-modal-body::-webkit-scrollbar {
    width: 6px;
  }

  .terms-content::-webkit-scrollbar-track,
  .features-modal-body::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 3px;
  }

  .terms-content::-webkit-scrollbar-thumb,
  .features-modal-body::-webkit-scrollbar-thumb {
    background: rgba(64, 224, 255, 0.3);
    border-radius: 3px;
  }

  .terms-content::-webkit-scrollbar-thumb:hover,
  .features-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(64, 224, 255, 0.5);
  }

  @media screen and (max-width: 768px) {
    .terms-modal,
    .features-modal-content {
      width: 95%;
      margin: 20px;
      max-height: 90vh;
    }

    .features-grid-modal {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .feature-card-modal {
      padding: 1.5rem;
    }

    .terms-content,
    .features-modal-body {
      max-height: 400px;
    }
  }

  /* FAQ Styles */
  .faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 20px;
  }

  .faq-item {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.25);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item:hover {
    border-color: rgba(64, 224, 255, 0.4);
    box-shadow: 0 8px 32px rgba(64, 224, 255, 0.15);
  }

  /* Executor List Styles */
.executor-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.executor-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(64, 224, 255, 0.1) 0%, rgba(64, 224, 255, 0.05) 100%);
  border: 1px solid rgba(64, 224, 255, 0.3);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(64, 224, 255, 0.1);
  min-height: 50px;
}

.executor-item.supported:hover {
  background: linear-gradient(135deg, rgba(64, 224, 255, 0.15) 0%, rgba(64, 224, 255, 0.08) 100%);
  border-color: rgba(64, 224, 255, 0.4);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(64, 224, 255, 0.2);
}

.executor-arrow {
  color: #40e0ff;
  font-weight: bold;
  margin-right: 12px;
  text-shadow: 0 0 8px rgba(64, 224, 255, 0.5);
}

.executor-name {
  color: #40e0ff;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(64, 224, 255, 0.3);
}

.executor-details {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 4px;
  flex: 1;
}

.executor-discord {
  color: #5865F2;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.2);
}

.executor-discord:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.4);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.executor-discord svg {
  width: 16px;
  height: 16px;
}

  .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background: rgba(64, 224, 255, 0.05);
  }

  .faq-question h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
  }

  .faq-toggle {
    color: #40e0ff;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }

  .faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: none;
    opacity: 1;
  }

  .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .faq-container {
      padding: 0 1rem;
    }

    .faq-question {
      padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
      font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
      padding: 0 1.5rem 1.2rem;
    }
  }

  /* Assistance Page Styles */
  .assistance-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 20px;
  }

  .assistance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .assistance-card {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .assistance-card:hover {
    border-color: rgba(64, 224, 255, 0.4);
    box-shadow: 0 12px 40px rgba(64, 224, 255, 0.15);
    transform: translateY(-8px);
  }

  .assistance-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #40e0ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .assistance-icon svg {
    width: 100%;
    height: 100%;
  }

  .assistance-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .assistance-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .assistance-btn {
    display: inline-block;
    background: linear-gradient(135deg, #40e0ff 0%, #4ecdc4 100%);
    color: #0f1419;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 224, 255, 0.3);
  }

  .assistance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 224, 255, 0.4);
  }

  .contact-info {
    background: linear-gradient(145deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(64, 224, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
  }

  .contact-info h3 {
    color: #40e0ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .common-issues {
    display: grid;
    gap: 1.5rem;
  }

  .issue-item {
    padding: 1.5rem;
    background: rgba(64, 224, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(64, 224, 255, 0.2);
  }

  .issue-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .issue-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .assistance-options {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .assistance-card {
      padding: 1.5rem;
    }

    .contact-info {
      padding: 1.5rem;
    }
  }

/* Changed the payment button layout to horizontal */
.payment-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: stretch;
  }
