/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8631C1;
  --secondary-color: #7124A3;
  --dark-bg: #171926;
  --darker-bg: #0A0E1A;
  --light-text: #FFFFFF;
  --gray-text: #A0A0A0;
  --border-radius: 8px;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: #FFFFFF;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--light-text);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  color: var(--light-text);
}

.primary-btn {
  background-color: var(--primary-color);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.small-btn {
  padding: 8px 15px;
  font-size: 14px;
}

.dark-bg {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.purple-bg {
  background-color: var(--primary-color);
  color: var(--light-text);
}

section {
  padding: 50px 0;
}

/* Header Styles */
header {
  width: 100%;
}

.announcement-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  padding: 6px 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  font-size: 14px;
}

.announcement-bar p {
  margin: 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.main-header {
  background-color: #FFFFFF;
  padding: 10px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.scroll-announcement {
  background: white;
  overflow: hidden;
  padding: 8px 0;
  border-top: 1px solid #eee;
}

.scroll-announcement {
  display: flex;
  overflow: hidden;
}

.scroll-text {
  color: black;
  white-space: nowrap;
  animation: scroll-left 12s linear infinite;
  padding-right: 50px;
  display: inline-block;
  font-weight: 700;
  font-stretch: expanded;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header-logo {
  height: 32px;
  width: auto;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s ease;
  background: rgba(134, 49, 193, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.menu-toggle:hover {
  background: rgba(134, 49, 193, 0.15);
  transform: scale(1.05);
}

.logo {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative; /* Added for neon icon positioning */
}

.header-logo {
  height: 32px;
  width: auto;
}

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

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 25px 20px;
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #333;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(134, 49, 193, 0.1);
}

.sidebar-header h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.close-menu {
  background: rgba(134, 49, 193, 0.08);
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: rgba(134, 49, 193, 0.15);
  transform: rotate(90deg);
}

.menu {
  list-style-type: none;
  margin-bottom: 30px;
}

.menu li {
  margin-bottom: 5px;
}

.menu a {
  color: #444;
  font-weight: 500;
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.menu a:hover {
  background: rgba(134, 49, 193, 0.08);
  color: var(--primary-color);
  transform: translateX(5px);
}

.soon-badge {
  background: #ff6b6b;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 10px;
  margin-left: 5px;
}

.sidebar-contact {
  margin-bottom: 20px;
}

.sidebar-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
}

.sidebar-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.sidebar-contact a {
  color: #333;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-contact a:hover {
  color: var(--primary-color);
}

.sidebar-footer {
  margin-top: 30px;
}

.header-left {
  display: flex;
  align-items: center;
}

.small-btn {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #333;
  font-size: 14px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Hero Section */
.hero {
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(134, 49, 193, 0.3) 0%, rgba(10, 14, 26, 0.5) 90%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-content p {
  margin-bottom: 20px;
}

.hero-content .btn {
  min-width: 200px;
  margin: 10px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-content .btn i {
  font-size: 16px;
}

@media (max-width: 576px) {
  .hero-content .btn {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
  }
}

.hero-description {
  margin: 20px 0;
  font-size: 16px;
  color: var(--gray-text);
}

/* Hero Highlight Section */
.hero-highlight {
  text-align: center;
  margin: 30px 0;
  padding: 25px;
  background: rgba(134, 49, 193, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(134, 49, 193, 0.2);
}

.hero-tagline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(134, 49, 193, 0.3);
}

.feature-description {
  margin: 25px 0;
}

.main-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.main-description strong {
  color: var(--primary-color);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(134, 49, 193, 0.3);
}

/* Hero Features Badges */
.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px 0 0;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 49, 193, 0.15);
  border: 1px solid rgba(134, 49, 193, 0.3);
  padding: 10px 18px;
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(134, 49, 193, 0.25);
  background: rgba(134, 49, 193, 0.2);
  border-color: rgba(134, 49, 193, 0.5);
  color: white;
}

.feature-badge i {
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-badge:hover i {
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 26px;
  }
  
  .main-description {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .hero-features {
    gap: 10px;
    padding: 0 15px;
  }
  
  .feature-badge {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .hero-highlight {
    padding: 20px 15px;
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .hero-tagline {
    font-size: 22px;
  }
  
  .main-description {
    font-size: 15px;
  }
  
  .hero-features {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  
  .feature-badge {
    flex: 1 1 calc(50% - 4px);
    min-width: 120px;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Hero Button Base Styles */
.hero-content .btn {
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 15px !important;
  position: relative !important;
  overflow: hidden !important;
  min-width: 280px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 2px solid transparent !important;
  text-decoration: none !important;
}

/* Primary Subscription Button */
.subscription-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(134, 49, 193, 0.3) !important;
}

.subscription-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.5s ease;
  z-index: 1;
}

.subscription-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 35px rgba(134, 49, 193, 0.4) !important;
  background: linear-gradient(135deg, var(--secondary-color), #5f2494) !important;
  color: white !important;
}

.subscription-btn:hover:before {
  left: 100%;
}

.subscription-btn i {
  font-size: 18px !important;
  z-index: 2 !important;
  position: relative !important;
  transition: transform 0.3s ease !important;
}

.subscription-btn:hover i {
  transform: scale(1.1) !important;
}

/* Secondary Sign-in Button */
.google-signin-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(134, 49, 193, 0.3) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.google-signin-btn:hover {
  background: rgba(134, 49, 193, 0.1) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 35px rgba(134, 49, 193, 0.3) !important;
  color: white !important;
}

.google-signin-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
}

.google-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.google-signin-btn:hover .google-icon {
  transform: scale(1.1) rotate(5deg);
}

.google-icon i {
  color: white !important;
  font-size: 14px !important;
  margin: 0 !important;
}

.signin-text {
  color: white !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

@media (max-width: 576px) {
  .hero-content .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 10px auto !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    min-width: unset !important;
  }
  
  .subscription-btn,
  .google-signin-btn {
    margin: 8px auto !important;
  }
}

/* Features Section */
.features {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 90% 10%, rgba(134, 49, 193, 0.08) 0%, rgba(255, 255, 255, 0.5) 80%);
  color: #333;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.08);
  z-index: 0;
}

.features h2, .features-subtitle, .feature-grid {
  position: relative;
  z-index: 2;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.features-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  perspective: 1000px;
  background: transparent;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(134, 49, 193, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(134, 49, 193, 0.2);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition: all 0.5s ease;
}

.feature-icon-wrapper .material-icons {
  font-size: 32px;
  color: white;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(0deg);
}

.feature-card:hover .feature-icon-wrapper .material-icons {
  transform: rotate(0deg) scale(1.2);
}

.feature-card h3 {
  color: #333;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .feature-card-inner {
    padding: 15px 10px;
  }

  .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .feature-icon-wrapper .material-icons {
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 40px 0;
  }

  .features h2 {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .feature-item {
    padding: 25px 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon .material-icons {
    font-size: 28px;
  }

  .feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-item p {
    font-size: 14px;
  }
}

/* Animation for features */
.feature-item.animate {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile view */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .feature-item {
    padding: 15px 10px;
    width: 100%;
    margin-bottom: 0;
  }

  .feature-item h3 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .feature-icon .material-icons {
    font-size: 32px;
  }
}

/* Logo Carousel Section */
.logo-carousel {
  background: linear-gradient(to right, var(--dark-bg), var(--darker-bg), var(--dark-bg));
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}

.carousel {
  display: flex;
  animation: scroll 10s linear infinite;
  /* Reduced from 30s to 15s for faster scrolling */
  padding: 10px 0;
}

.carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.carousel-item {
  flex: 0 0 auto;
  width: 200px;
  height: 90px;
  margin: 0 10px;
  /* Reduced margin from 20px to 10px */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(30%);
  opacity: 0.8;
}

.carousel-item:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

.carousel-logo {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  /* Increased from 80px to 90px */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(134, 49, 193, 0.05) 0%, rgba(134, 49, 193, 0.02) 100%);
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.magic-levels-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  background: rgba(134, 49, 193, 0.03);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(134, 49, 193, 0.1);
  transition: transform 0.3s ease;
}

.magic-levels-intro:hover {
  transform: translateY(-5px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(134, 49, 193, 0.15);
}

.step-content {
  padding: 30px;
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(134, 49, 193, 0.3);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.1), rgba(134, 49, 193, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.step-icon {
  font-size: 32px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon-wrapper {
  transform: rotate(10deg);
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.2), rgba(134, 49, 193, 0.1));
}

.process-step:hover .step-icon {
  transform: rotate(-10deg) scale(1.1);
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #555;
}

.feature-benefits i {
  color: var(--primary-color);
  margin-right: 10px;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .magic-levels-intro {
    padding: 20px;
    margin-bottom: 40px;
  }

  .step-content {
    padding: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .step-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .step-icon {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .magic-levels-intro {
    margin-bottom: 30px;
  }
}

/* Magic Levels Intro */
.magic-levels-intro {
  margin: 0 auto 30px;
  max-width: 850px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.05), rgba(134, 49, 193, 0.1));
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.magic-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: center;
}

.magic-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(134, 49, 193, 0.3);
}

.magic-badge i {
  font-size: 22px;
}

.magic-header h3 {
  font-size: 22px;
  color: #222;
  margin: 0;
}

.magic-levels-intro p {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
  position: relative;
  z-index: 1;
}

.process-step {
  flex:1;
  min-width: 300px;
  background: white;
  border-radius:12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
 position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(134, 49, 193, 0.1);
  backdrop-filter: blur(10px);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(134, 49, 193, 0.15);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  color: var(--primary-color);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.step-icon-wrapper {
  margin-right: 15px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.step-description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin: 15px 0;
  opacity: 0.8;
}

/* Summary Card */
.summary-card {
  max-width: 700px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

.summary-content {
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.9), rgba(113, 36, 163, 0.95));
  color: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(134, 49, 193, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.summary-header i {
  font-size: 20px;
  margin-right: 10px;
  color: white;
}

.summary-header h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.summary-content p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 600px;
}

.summary-stats {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin: 15px 0 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  opacity: 0.9;
}

.summary-content .btn {
  margin-top: 8px;
  padding: 8px 18px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
}

.summary-content .btn:hover {
  background: white;
  color: var(--primary-color);
}

/* Responsive adjustments for the How It Works section */
@media (max-width: 992px) {
  .process-step {
    min-width: 250px;
  }

  .summary-stats {
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 0;
  }

  .magic-levels-intro {
    padding: 20px;
  }

  .magic-header {
    flex-direction: column;
    text-align: center;
  }

  .magic-badge {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .process-step {
    padding: 20px;
  }

  .summary-content {
    padding: 25px 20px;
  }

  .summary-header {
    flex-direction: column;
  }

  .summary-header i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .magic-header h3 {
    font-size: 20px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-icon {
    font-size: 36px;
  }

  .summary-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Timeframes Section */
.timeframes {
  padding: 80px 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(134, 49, 193, 0.15) 0%, rgba(10, 14, 26, 0.9) 80%);
  position: relative;
  overflow: hidden;
}

.timeframes::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.timeframes .section-title {
  color: white;
  margin-bottom: 15px;
}

.timeframes .section-subtitle {
  color: var(--gray-text);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
}

.timeframe-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.timeframe-card {
  background: rgba(23, 25, 38, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(134, 49, 193, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeframe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(134, 49, 193, 0.2);
}

.timeframe-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  position: relative;
  text-align: center;
}

.timeframe-card .card-header i {
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.timeframe-card .card-header h3 {
  color: white;
  margin: 0;
  font-size: 20px;
}

.india-exclusive {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  color: white;
}

.timeframe-card .card-content {
  padding: 25px;
}

.timeframe-card h4 {
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 10px;
}

.timeframe-card .markets,
.timeframe-card .timeframe-info,
.timeframe-card .entry-rules {
  margin-bottom: 20px;
}

.timeframe-card .markets p,
.timeframe-card .entry-rules p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.6;
}

.timeframe-card .timeframe-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeframe-card .timeframe-info li {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.timeframe-card .timeframe-info li i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .timeframe-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .timeframes {
    padding: 60px 0;
  }

  .timeframes .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .timeframe-card .card-header h3 {
    font-size: 18px;
  }
}

/* Video Section */
.video-section {
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.video-section::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.08);
  z-index: 0;
}

.video-section h2, .video-section p, .video-container {
  position: relative;
  z-index: 2;
}

.video-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.video-section p {
  margin-bottom: 30px;
  color: var(--gray-text);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .thumbnail-img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(134, 49, 193, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(134, 49, 193, 0.5);
}

.video-wrapper:hover .play-button {
  background-color: rgba(134, 49, 193, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: white;
  font-size: 30px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(134, 49, 193, 0.1) 0%, transparent 70%);
  transform: rotate(-45deg);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.testimonial-header h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #e0c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-header p {
  color: var(--gray-text);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  transition: transform 0.3s ease;
  gap: 25px;
  padding: 0 20px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-button {
  background: rgba(134, 49, 193, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: var(--primary-color);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 300px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.metrics {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0;
  padding: 15px;
  background: rgba(134, 49, 193, 0.1);
  border-radius: 12px;
}

.highlight {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 14px;
  color: var(--gray-text);
}

.testimonial-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
  font-size: 18px;
  color: white;
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--gray-text);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-header h2 {
    font-size: 32px;
  }

  .testimonial-header p {
    font-size: 16px;
    padding: 0 20px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 15px;
  }

  .highlight {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .section-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }

  .metrics {
    padding: 12px;
  }
}

/* Comparison Section */
.comparison {
  padding: 60px 0;
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(134, 49, 193, 0.3) 0%, rgba(10, 14, 26, 0.5) 90%);
  position: relative;
  overflow: hidden;
}

.comparison::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.comparison-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.comparison-title {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.comparison-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #fff, #e0c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.comparison-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.comparison-title p {
  color: var(--gray-text);
  margin-bottom: 25px;
  font-size: 18px;
}

.comparison-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}

.comparison-card {
  background: rgba(23, 25, 38, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  padding: 20px;
  text-align: center;
  position: relative;
}

.with-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.without-card .card-header {
  background: linear-gradient(135deg, #333, #222);
}

.card-header h3 {
  font-size: 24px;
  margin: 0;
  color: white;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
}

.comparison-features {
  padding: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  position: relative;
}

.with-card .feature-item {
  background: rgba(134, 49, 193, 0.1);
}

.without-card .feature-item {
  background: rgba(51, 51, 51, 0.3);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 2px;
}

.with-card .feature-icon {
  background: rgba(134, 49, 193, 0.8);
  color: white;
}

.without-card .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.feature-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.with-card .feature-text {
  color: rgba(255, 255, 255, 0.9);
}

.without-card .feature-text {
  color: rgba(255, 255, 255, 0.7);
}

/* New Comparison Table Styles */
.comparison-table-container {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(10px);
  display: block;
  position: relative;
  z-index: 2;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background-color: rgba(134, 49, 193, 0.05);
}

.comparison-row.header-row {
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.9), rgba(113, 36, 163, 0.9));
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}

.feature-column, .with-column, .without-column {
  padding: 20px;
  display: flex;
  align-items: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.feature-column {
  width: 25%;
  font-weight: 600;
  background-color: rgba(10, 14, 26, 0.9);
  color: var(--light-text);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.with-column, .without-column {
  width: 37.5%;
  position: relative;
}

.with-column {
  background-color: rgba(134, 49, 193, 0.05);
}

.without-column {
  background-color: rgba(51, 51, 51, 0.05);
}

.feature-name {
  font-size: 16px;
  color: var(--light-text);
}

.with-feature, .without-feature {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.check-icon, .x-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  font-weight: bold;
}

.check-icon {
  background-color: rgba(134, 49, 193, 0.2);
  color: #64FF00;
}

.x-icon {
  background-color: rgba(255, 0, 0, 0.1);
  color: #FF6B6B;
}

.with-feature span:last-child, .without-feature span:last-child {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

.with-feature span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.without-feature span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile Comparison Styles */
.mobile-comparison {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.mobile-tabs {
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-tab {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--light-text);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-tab.active {
  color: white;
  background: linear-gradient(135deg, rgba(134, 49, 193, 0.3), rgba(113, 36, 163, 0.3));
}

.mobile-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mobile-tab-content {
  display: none;
  padding: 20px;
}

.mobile-tab-content.active {
  display: block;
}

.mobile-feature-item {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.mobile-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.mobile-feature-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--light-text);
}

.mobile-feature-desc {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-feature-desc .check-icon,
.mobile-feature-desc .x-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  font-size: 12px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .comparison-table-container {
    display: none;
  }
  
  .mobile-comparison {
    display: block;
  }
  
  .comparison-title h2 {
    font-size: 28px;
  }
  
  .comparison-title p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .comparison-grid {
    display: none;
  }
  
  .comparison-card {
    display: none;
  }
}

/* Animation for comparison cards */
.comparison-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.comparison-card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Section */
.pricing {
  padding: 60px 0;
  text-align: center;
  background-image: radial-gradient(circle at 15% 85%, rgba(134, 49, 193, 0.6) 0%, rgba(113, 36, 163, 0.9) 80%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.pricing h2, .pricing-container, .pricing-tabs, .pricing-cards {
  position: relative;
  z-index: 2;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Tabs */
.pricing-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}



.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 300px;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 30px;
}

.pricing-tab-btn {
  padding: 10px 30px;
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  flex: 1;
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background-color: var(--dark-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  flex: 1;
  max-width: 450px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-10px);
}

.pricing-save-badge {
  position: absolute;
  top: 15px;
  right: 0;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: white;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pricing-save-badge::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 13px 0 14px 8px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark-bg);
  transform: translateX(8px);
}

.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  z-index: 1;
}

.card-header {
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.card-header h3 {
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 30px 25px;
  position: relative;
}

.price-wrapper {
  margin-bottom: 20px;
}

.timer-container {
  background: rgba(134, 49, 193, 0.1);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
}

.timer-container p {
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 5px;
}

#countdown-timer {
  font-size: 20px;
  font-weight: bold;
  color: #ff6b6b;
}

.price-symbol {
  font-size: 24px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.price-duration {
  font-size: 15px;
  color: var(--gray-text);
  margin-top: 5px;
}

.original-price {
  color: var(--gray-text);
  text-decoration: line-through;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.price-comparison {
  font-size: 14px;
  margin: 15px 0;
  padding: 10px;
  background: rgba(134, 49, 193, 0.1);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.price-detail {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 20px;
}

.price-note {
  font-size: 12px;
  color: var(--gray-text);
  margin: 15px 0;
}

.price-gst {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 15px;
  text-align: center;
}

.pricing-btn {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pricing-btn.loading {
  cursor: not-allowed;
  opacity: 0.8;
}

.button-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.features-list {
  list-style-type: none;
  text-align: left;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.features-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 500;
  margin-bottom: 3px;
}

.feature-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.exclusive-feature {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 10px;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}

.feature-icon-box.premium {
  background: linear-gradient(135deg, #ffd700, #ff9900);
}

.exclusive-tag {
  color: #ffd700;
  font-weight: 500;
}

.special-note {
  font-size: 12px;
  color: #ffd700;
  margin-top: 10px;
  padding: 5px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 4px;
}

.feature-icon-box {
  position: relative;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #9153d9, #7124A3);
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 3px;
  min-width: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box::before {
  content: '';
  position: absolute;  top: 0;
  right: 0;
  border-width: 10px 0 11px 7px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark-bg);
  transform: translateX(7px);
}

.features-list i {
  color: #4caf50;
  margin-right: 10px;
  font-size: 16px;
  min-width: 20px;
  margintop: 3px;
}

.feature-heading {
  font-weight: 600;
  font-size: 16px;
  color: white;
  margin: 25px 0 15px;
  position: relative;
  text-align: left;
}

.feature-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

/* Mobile optimizations */
@media (max-width: 992px) {
  .pricing-cards {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
    max-width: 90%;
  }

  .pricing-card.featured {
    transform: translateY(0);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .price-amount {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .pricing h2 {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .pricing-tabs {
    width: 90%;
    max-width: 280px;
    padding: 4px;
    margin-bottom: 25px;
  }

  .pricing-tab-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .pricing-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .card-header {
    padding: 18px 15px;
  }

  .card-header h3 {
    font-size: 18px;
  }

  .card-content {
    padding: 20px 15px;
  }

  .price-amount {
    font-size: 28px;
  }

  .features-list li {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .features-list i {
    margin-top: 2px;
  }

  .pricing-save-badge {
    font-size: 11px;
    padding: 5px 10px 5px 8px;
  }

  .price-duration, .price-comparison, .price-note {
    font-size: 13px;
  }

  .pricing-btn {
    padding: 12px;
    font-size: 14px;
  }

  .feature-heading {
    font-size: 15px;
    margin: 18px 0 12px;
  }
}

/* Contact Section */
.contact {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 15px;
  color: var(--gray-text);
}

.contact-email {
  text-align: center;
  margin-bottom: 30px;
}

.contact-email a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--light-text);
  font-weight: 500;
}

.mobile-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-input-group input {
  padding-left: 45px !important;
  width: 100%;
}

.mobile-prefix {
  position: absolute;
  left: 12px;
  color: #fff;
  font-size: 14px;
  pointer-events: none;
  user-select: none;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 16px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.error-message {
  color: #ff4444;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.form-status {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
}

.form-status.error {
  display: block;
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
  box-shadow: 0 2px 10px rgba(255, 68, 68, 0.1);
}

/* Free Trial Error Message Styles */
#trialErrorMessage {
  margin: 15px 0;
  padding: 12px 15px;
  background: rgba(255, 68, 68, 0.15);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 8px;
  width: 100%;
}

#trialErrorMessage .error-message {
  display: flex;
  align-items: center;
  color: #ff4444;
  font-size: 14px;
  margin-top: 0;
}

#trialErrorMessage .error-message i {
  margin-right: 10px;
  font-size: 16px;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background-image: radial-gradient(circle at 70% 20%, rgba(134, 49, 193, 0.2) 0%, rgba(10, 14, 26, 0.7) 70%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.faq::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.08);
  z-index: 0;
}

.faq h2, .faq-container {
  position: relative;
  z-index: 2;
}

.faq h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--primary-color);
}

.faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--secondary-color);
}

.faq-icon {
  margin-right: 15px;
  color: var(--light-text);
  font-size: 18px;
  min-width: 20px;
}

.faq-toggle {
  font-size: 24px;
  transition: all 0.3s ease;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: rgba(134, 49, 193, 0.7);
}

.faq-answer.active {
  max-height: 500px;
  padding: 20px;
}

.faq-answer p {
  margin-bottom: 0;
  line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.scroll-to-top.visible {
  display: flex;
}

/* Success Page */
.success-message-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.success-message {
  width: 90%;
  max-width: 400px;
  background: #171926;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 15px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.success-flex {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.success-content-left {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-content-right {
  flex: 1.2;
  min-width: 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 40px;
  color: white;
  animation: scaleIn 0.5s ease;
}

.success-title {
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #e0c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-content {
  margin: 25px 0;
}

.success-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.success-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 20px auto;
  opacity: 0.5;
}

.join-message {
  color: #ffd700 !important;
  font-size: 18px;
  margin: 15px 0;
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
}

.swipe-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.swipe-btn {
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.telegram-btn {
  background: #0088cc;
  color: white;
}

.swipe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.swipe-btn i {
  font-size: 20px;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .success-flex {
    flex-direction: column;
  }

  .success-message {
    padding: 20px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
  }

  .success-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .success-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .success-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .success-content {
    margin: 20px 0;
  }

  .join-message {
    font-size: 16px;
    padding: 8px;
  }

  .swipe-btn {
    padding: 12px;
  }

  .swipe-btn i {
    font-size: 18px;
  }
}

.success-card {
    background: rgba(23, 25, 38, 0.95);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-checkmark {
    font-size: 64px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.transaction-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.label {
    color: var(--gray-text);
}

.value {
    color: var(--light-text);
    font-weight: 500;
}

.welcome-message {
    margin: 30px 0;
}

.welcome-message h2 {
    color: var(--light-text);
    font-size: 24px;
    margin-bottom: 25px;
}

.access-steps {
    text-align: left;
}

.access-steps h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 18px;
}

.step {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--light-text);
    margin: 0 0 5px;
    font-size: 16px;
}

.step-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 14px;
}

.highlight {
    color: #4CAF50;
    font-weight: 500;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.actions {
    margin-top: 30px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .success-card {
        padding: 25px;
    }

    .success-checkmark {
        font-size: 48px;
    }

    .welcome-message h2 {
        font-size: 20px;
    }

    .step {
        padding: 12px;
    }
}

.success-container {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.success-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(134, 49, 193, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

.success-container h1 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.transaction-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.payment-id, .subscription-id {
    color: var(--gray-text);
    font-size: 14px;
    margin: 5px 0;
}

.success-message {
    color: white;
    font-size: 18px;
    margin: 15px 0;
}

.success-note {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 25px;
}

.success-actions {
    margin-top: 30px;
}

.access-steps {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.access-steps h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.access-steps ol {
    color: var(--gray-text);
    margin-left: 20px;
    margin-bottom: 20px;
}

.access-steps li {
    margin-bottom: 15px;
    line-height: 1.4;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0088cc;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    width: fit-content;
    cursor: pointer;
}

.telegram-btn:hover {
    background: #0099dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.telegram-btn i {
    margin-right: 8px;
    font-size: 20px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Free Trial Section */
.free-trial-section {
  min-height: calc(100vh - 100px);
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(134, 49, 193, 0.3) 0%, rgba(10, 14, 26, 0.5) 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.free-trial-wrapper {
  background: #0A0E1A;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.free-trial-wrapper h1 {
  margin-bottom: 10px;
  font-size: 28px;
}

.free-trial-wrapper p {
  color: #A0A0A0;
  margin-bottom: 25px;
}

.free-trial-wrapper .form-group {
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .free-trial-wrapper {
    padding: 25px;
  }

  .free-trial-wrapper h1 {
    font-size: 24px;
  }
}

/* Footer Section */
.footer {
  padding: 60px 0 20px;
  background-image: radial-gradient(circle at 30% 30%, rgba(134, 49, 193, 0.15) 0%, rgba(10, 14, 26, 0.9) 80%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(134, 49, 193, 0.1);
  z-index: 0;
}

.footer-content, .footer-links, .footer-copyright, .disclaimer {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.footer-brand h4 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.footer-contact {
  flex: 1;
  min-width: 300px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--gray-text);
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--gray-text);
  font-size: 20px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  margin-bottom: 20px;
  color: var(--gray-text);
}

.disclaimer {
  font-size: 12px;
  color: var(--gray-text);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.disclaimer p {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .feature-cell,
  .with-cell,
  .without-cell {
    text-align: center;
  }

  .testimonial-controls {
    left: 0;
    right: 0;
  }

  .prev-btn,
  .next-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .hero h1,
  .how-it-works h2,
  .comparison-title h2,
  .pricing h2,
  .faq h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-brand,
  .footer-contact {
    min-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

.sidebar-footer .social-icons a {
  color: #333;
  font-size: 18px;
}

.sidebar-footer .social-icons a:hover {
  color: var(--primary-color);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

/* Popup Form */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.95);
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup-content {
  position: relative;
  background: #0A0E1A;
  width: 90%;
  max-width: 400px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.popup-content {
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.popup-content p {
  color: #A0A0A0;
  margin-bottom: 20px;
  font-size: 14px;
}

.trial-info {
  background-color: rgba(134, 49, 193, 0.15);
  border-left: 3px solid var(--primary-color);
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.trial-info p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(134, 49, 193, 0.1);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background: rgba(134, 49, 193, 0.2);
  transform: rotate(90deg);
}

.country-code-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.country-select {
  display: flex;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  gap: 5px;
}

.country-select img {
  border-radius: 2px;
}

.country-select span {
  color: white;
  font-size: 14px;
}

#freeTrialForm .form-group {
  margin-bottom: 15px;
}

#freeTrialForm input {
  width: 100%;
  padding: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 8px;
  font-size: 14px;
}

#freeTrialForm input::placeholder {
  color: #A0A0A0;
}

#whatsappNumber {
  border-radius: 0 8px 8px 0 !important;
}

.form-note {
  margin-top: 15px;
  font-size: 12px !important;
  color: #A0A0A0;
}

.success-message {
  text-align: center;
  padding: 15px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin: 10px;
}

.success-message h3 {
  color: #4CAF50;
  margin-bottom: 12px;
  font-size: 20px;
}

.success-message p {
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.join-message {
  font-size: 13px;
  color: #ffd700 !important;
  margin: 15px 0;
  padding: 8px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
}

.swipe-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.swipe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.swipe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swipe-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.whatsapp-btn {
  background: #25D366;
}

.telegram-btn {
  background: #0088cc;
}

@media (max-width: 480px) {
  .success-message {
    padding: 15px;
    margin: 0;
    width: 100%;
  }

  .success-message-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .success-message h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .success-message p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .video-container {
    margin: 10px 0;
  }

  .join-message {
    font-size: 12px;
    margin: 10px 0;
    padding: 8px;
  }

  .swipe-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .swipe-btn {
    padding: 10px;
    width: 100%;
  }

  .swipe-btn i {
    font-size: 16px;
  }

  .success-flex {
    gap: 15px;
  }
}

.username-form-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 15px;
  overflow-y: auto;
}

.username-form-content {
  background: linear-gradient(145deg, #0f1320, #171926);
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(134, 49, 193, 0.25);
  border: 1px solid rgba(134, 49, 193, 0.1);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 20px 15px;
  text-align: center;
  position: relative;
}

.header-icon {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-header h3 {
  color: white;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.form-body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.input-group {
  position: relative;
  margin-bottom: 10px;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 16px;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid rgba(134, 49, 193, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(134, 49, 193, 0.05);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.state-select {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid rgba(134, 49, 193, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.state-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(134, 49, 193, 0.05);
}

.state-select option {
  background: #171926;
  color: white;
}

.error-message {
  color: #ff4444;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 15px;
  display: block;
  text-align: left;
  padding-left: 5px;
}

.submit-button {
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 14px;
  color: white;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(134, 49, 193, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(134, 49, 193, 0.4);
  background: linear-gradient(135deg, #9153d9, #5f2494);
}

.submit-button:hover:not(:disabled)::before {
  left: 100%;
}

.submit-button:active:not(:disabled) {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

.discount-container {
  margin-bottom: 15px;
}

.discount-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 10px;
}

.discount-input-wrapper .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 16px;
  z-index: 2;
}

.discount-input {
  flex: 1;
  padding: 12px 90px 12px 45px !important;
  border: 2px solid rgba(134, 49, 193, 0.1) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: white !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  transition: all 0.3s ease;
}

.discount-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(134, 49, 193, 0.05);
}

.discount-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.apply-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: calc(100% - 10px);
  padding: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-btn:hover {
  opacity: 0.9;
  transform: translateY(-50%) scale(1.02);
}

.discount-container .error-message {
  min-height: 20px;
  margin-top: 5px;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: linear-gradient(135deg, #666, #444);
  transform: none !important;
  box-shadow: none !important;
}

.submit-button i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.submit-button:hover:not(:disabled) .fa-arrow-right {
  transform: translateX(8px);
}

.submit-button:hover:not(:disabled) .fa-credit-card {
  transform: scale(1.15) rotate(5deg);
}

.submit-button .button-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .username-form-content {
    width: 95%;
  }

  .form-header {
    padding: 20px 15px;
  }

  .form-body {
    padding: 20px;
  }

  .header-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.neon-icon {
  color: var(--primary-color);
  font-size: 20px;
  animation: neonBlink 2s infinite;
  text-shadow: 0 0 5px var(--primary-color),
               0 0 10px var(--primary-color),
               0 0 20px var(--primary-color);
  margin-left: auto;
  padding-right: 20px;
}

@keyframes neonBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.neon-icon a {
  text-decoration: none;
  color: inherit; /* Inherit neon icon color */
}
.success-message-container {
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.success-message {
  background: rgba(23, 25, 38, 0.95);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.success-flex {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.success-content-left {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.success-content-right {
  flex: 1.2;
  min-width: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #000;
}

.telegram-btn {
  width: 100%;
  max-width: 300px;
  margin: 15px auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .success-flex {
    flex-direction: column;
  }

  .success-content-right {
    order: -1;
  }

  .success-message {
    padding: 20px;
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 40px;
  color: white;
  animation: scaleIn 0.5s ease;
}

.success-title {
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #e0c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-content {
  margin: 25px 0;
}

.success-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.success-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 20px auto;
  opacity: 0.5;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .success-message {
    padding: 25px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .success-icon i {
    font-size: 30px;
  }

  .success-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .success-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .success-content {
    margin: 20px 0;
  }
}