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

:root {
  --primary-purple: #8b45ff;
  --primary-pink: #ff6b9d;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #111111;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: rgba(139, 69, 255, 0.2);
  --glow-color: rgba(139, 69, 255, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(139, 69, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

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

.loading-logo {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
  border-radius: 2px;
  animation: loading 3s ease-in-out;
}

.loading-text {
  color: var(--text-secondary);
  font-size: 1rem;
  animation: fadeInOut 2s infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 69, 255, 0.6);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-up:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-fade-up:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-fade-up:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-fade-up:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-fade-up:nth-child(5) {
  animation-delay: 0.5s;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: transparent;
  padding: 0.3rem 0;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.logo-text:hover {
  transform: scale(1.05);
}

.logo-accent {
  color: var(--primary-purple);
}

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

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.discord-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #5865f2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discord-btn::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;
}

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

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.get-premium-btn {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.get-premium-btn::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;
}

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

.get-premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--glow-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex; /* Use flex to center video */
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensure video doesn't overflow */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2; /* Below particles and orbs */
  object-fit: cover;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%238b45ff" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="%23ff6b9d" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1" fill="%238b45ff" opacity="0.2"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="5s" repeatCount="indefinite"/></circle></svg>')
    repeat;
  animation: float 20s infinite linear;
  z-index: -1; /* Above video, below content */
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
  z-index: -1; /* Above video, below content */
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 69, 255, 0.4) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139, 69, 255, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

.hero-background-video {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
  text-align: center; /* Center content */
}

.hero-content {
  max-width: 800px; /* Constrain width for readability */
  z-index: 1;
  text-align: center; /* Ensure text aligns center */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--primary-purple);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 69, 255, 0.2);
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.1;
}

.title-main {
  background: linear-gradient(135deg, var(--text-primary), #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  opacity: 0.1;
  filter: blur(20px);
  z-index: -1;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: var(--primary-purple);
  font-weight: 700;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
  opacity: 0.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--glow-color);
  box-shadow: 0 20px 40px rgba(139, 69, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-purple);
  display: block;
  line-height: 1;
}

.stat-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-pink);
  display: inline;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(139, 69, 255, 0.1);
  border-color: rgba(139, 69, 255, 0.3);
}

.feature-item i {
  color: var(--primary-purple);
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  box-shadow: 0 10px 30px rgba(139, 69, 255, 0.3);
}

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

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button.primary:hover {
  box-shadow: 0 20px 40px rgba(139, 69, 255, 0.4);
}

.cta-button.secondary:hover {
  background: rgba(139, 69, 255, 0.1);
  border-color: var(--primary-pink);
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-button:hover .button-glow {
  opacity: 0.2;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: #22c55e;
  font-size: 1.1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary-purple);
  border-bottom: 2px solid var(--primary-purple);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Setup Section */
.setup-section {
  padding: 8rem 0;
  background: var(--darker-bg);
}

/* Setup Section Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.setup-schema {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.schema-step {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  transform: translateY(20px);
}

.schema-step:nth-child(1) { animation-delay: 0.1s; }
.schema-step:nth-child(3) { animation-delay: 0.3s; }
.schema-step:nth-child(5) { animation-delay: 0.5s; }
.schema-step:nth-child(7) { animation-delay: 0.7s; }

.schema-arrow {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
  transform: translateY(20px);
}

.schema-arrow:nth-child(2) { animation-delay: 0.2s; }
.schema-arrow:nth-child(4) { animation-delay: 0.4s; }
.schema-arrow:nth-child(6) { animation-delay: 0.6s; }

.schema-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  min-width: 150px;
}

.schema-step:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: none;
}

.schema-step .step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.schema-step .step-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.schema-arrow {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

/* Features Section */
.features {
  padding: 8rem 0;
  background: transparent;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Made cards smaller */
  gap: 1rem; /* Reduced gap */
}

.feature-card {
  background: transparent;
  padding: 1rem; /* Reduced padding */
  border-radius: 12px; /* Reduced border radius */
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.05), rgba(255, 107, 157, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px); /* Reduced lift */
  border-color: transparent;
  box-shadow: none;
}

.feature-icon {
  width: 40px; /* Smaller icon */
  height: 40px; /* Smaller icon */
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 10px; /* Smaller border radius */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem; /* Reduced margin */
  position: relative;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.1rem; /* Smaller icon font */
  color: white;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 10px;
  filter: blur(10px); /* Reduced blur */
  opacity: 0.3;
  z-index: -1;
}

.feature-card h3 {
  font-size: 1.1rem; /* Smaller heading */
  font-weight: 700;
  margin-bottom: 0.5rem; /* Reduced margin */
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.4; /* Adjusted line height */
  margin-bottom: 0.6rem; /* Reduced margin */
  font-size: 0.85rem; /* Smaller font size */
}

.feature-stats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* Reduced gap */
}

.feature-stats span {
  display: flex;
  align-items: center;
  gap: 0.2rem; /* Reduced gap */
  font-size: 0.75rem; /* Smaller font size */
  color: var(--primary-purple);
  font-weight: 500;
}

.feature-stats i {
  font-size: 0.65rem; /* Smaller icon font */
}

/* Versions Section */
.versions {
  padding: 8rem 0;
  background: transparent;
}

.versions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted minmax for compactness */
  gap: 1rem; /* Reduced gap */
}

.version-card {
  background: transparent;
  border-radius: 12px; /* Smaller border radius */
  padding: 1rem; /* Reduced padding */
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.version-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.03), rgba(255, 107, 157, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.version-card:hover {
  transform: translateY(-5px); /* Reduced lift */
  border-color: transparent;
  box-shadow: none;
}

.advanced-card {
  border-color: transparent;
}

.advanced-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.version-header {
  margin-bottom: 0.6rem; /* Reduced margin */
}

.version-badge {
  padding: 0.2rem 0.6rem; /* Reduced padding */
  font-size: 0.65rem; /* Smaller font */
  margin-bottom: 0.4rem; /* Reduced margin */
}

.version-header h3 {
  font-size: 1.3rem; /* Smaller heading */
  margin-bottom: 0.1rem; /* Reduced margin */
}

.version-subtitle {
  font-size: 0.8rem; /* Smaller font */
}

.version-image {
  width: 100%; /* Ensure image takes full width */
  height: 120px; /* Smaller image height */
  border-radius: 8px; /* Smaller border radius */
  overflow: hidden;
  margin-bottom: 0.8rem; /* Reduced margin */
  position: relative;
  background: transparent;
}

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

.version-card:hover .version-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 600;
  cursor: pointer; /* Add cursor pointer for clickability */
}

.version-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 1.6rem; /* Smaller icon */
  margin-bottom: 0.4rem; /* Reduced margin */
  color: var(--primary-purple);
}

.version-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-content {
  text-align: center;
  z-index: 2;
}

.placeholder-content i {
  font-size: 1.8rem; /* Smaller icon */
  margin-bottom: 0.4rem; /* Reduced margin */
  color: var(--primary-purple);
  animation: float 3s ease-in-out infinite;
}

.placeholder-content h4 {
  font-size: 0.9rem; /* Smaller heading */
}

.placeholder-content p {
  font-size: 0.7rem; /* Smaller font */
}

.coming-soon-overlay {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, var(--primary-pink), #ff8fab);
  color: white;
  padding: 0.15rem 0.4rem; /* Reduced padding */
  border-radius: 12px;
  font-size: 0.6rem; /* Smaller font */
  font-weight: 600;
}

.version-features h4 {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem; /* Smaller heading */
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.version-features h4 i {
  color: var(--primary-purple);
}

.version-features ul {
  list-style: none;
  margin-bottom: 0.8rem;
}

.version-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem; /* Reduced gap */
  margin-bottom: 0.4rem; /* Reduced margin */
  color: var(--text-secondary);
  line-height: 1.2;
  font-size: 0.75rem; /* Smaller font */
}

.version-features li i {
  color: var(--primary-purple);
  margin-top: 0.1rem;
  font-size: 0.7rem; /* Smaller icon */
  flex-shrink: 0;
}

.version-features strong {
  color: var(--text-primary);
  font-weight: 600;
}

.version-proof {
  margin-bottom: 0.8rem; /* Reduced margin */
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.proof-item {
  text-align: center;
  padding: 0.4rem; /* Reduced padding */
  background: transparent;
  border-radius: 6px;
  border: none;
}

.proof-number {
  display: block;
  font-size: 1.1rem; /* Smaller number */
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 0.1rem;
}

.proof-label {
  font-size: 0.65rem; /* Smaller font */
  color: var(--text-secondary);
  font-weight: 500;
}

.version-pricing {
  text-align: center;
}

.price-preview {
  margin-bottom: 0.6rem; /* Reduced margin */
}

.price-from {
  display: block;
  font-size: 0.65rem; /* Smaller font */
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.price-amount {
  font-size: 1.6rem; /* Smaller amount */
  font-weight: 800;
  color: var(--primary-purple);
}

.version-btn {
  width: 100%;
  padding: 0.6rem; /* Reduced padding */
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem; /* Smaller font */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.version-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 69, 255, 0.3);
}

.version-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
}

.version-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.button-shine {
  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;
}

.version-btn:hover .button-shine {
  left: 100%;
}

/* Version Comparison Section */
.version-comparison {
  padding: 8rem 0;
  background: transparent;
}

.comparison-table {
  background: transparent;
  border-radius: 24px;
  border: none;
  overflow: hidden;
  margin-bottom: 3rem;
}

.minimalist-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* Feature, Basic, Advanced */
  max-width: 800px; /* Make it smaller */
  margin-left: auto;
  margin-right: auto;
}

.minimalist-table .table-header {
  display: contents;
}

.minimalist-table .header-cell {
  padding: 0.8rem 0.5rem; /* Smaller padding */
  font-size: 0.9rem; /* Smaller font */
}

.minimalist-table .header-cell:first-child {
  padding-left: 1.5rem; /* Adjust padding */
}

.minimalist-table .feature-cell,
.minimalist-table .status-cell {
  padding: 0.7rem 0.5rem; /* Smaller padding */
  font-size: 0.85rem; /* Smaller font */
}

.minimalist-table .feature-cell {
  padding-left: 1.5rem; /* Adjust padding */
}

.minimalist-table .status-cell i {
  font-size: 1rem; /* Smaller icon */
}

.table-header {
  display: contents; /* Allows children to be direct grid items */
}

.header-cell {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  padding: 1.2rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell:first-child {
  background: var(--card-bg);
  border-right: 1px solid var(--border-color);
  color: var(--text-primary);
  text-align: left;
  padding-left: 2rem;
}

.header-cell:last-child {
  border-right: none;
}

.table-row {
  display: contents; /* Allows children to be direct grid items */
}

.feature-cell,
.status-cell {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-cell {
  text-align: left;
  padding-left: 2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.status-cell {
  text-align: center;
}

.status-cell i {
  font-size: 1.2rem;
}

.status-cell .check {
  color: #22c55e; /* Green for check */
}

.status-cell .cross {
  color: #ef4444; /* Red for cross */
}

.status-cell .clock {
  color: var(--primary-pink); /* Pink for coming soon */
}

.table-row:last-child .feature-cell,
.table-row:last-child .status-cell {
  border-bottom: none;
}

.feature-cell:last-child,
.status-cell:last-child {
  border-right: none;
}

.comparison-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Proof Section */
.social-proof {
  padding: 8rem 0;
  background: transparent;
}

/* Product Purchase Section */
.product-purchase-section {
  padding: 12rem 2rem 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-bg);
}

.purchase-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  background: var(--darker-bg);
  padding: 2rem;
  border-radius: 24px;
}

.product-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.product-image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.product-image-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-details-column {
  color: var(--text-primary);
}

.product-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-rating {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  padding: 0.5rem;
  border-radius: 8px;
}

.quantity-btn {
  background: #333;
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: var(--primary-purple);
}

.quantity-value {
  font-weight: 600;
  padding: 0 0.5rem;
}

.variants-section {
  margin-bottom: 2rem;
}

.variants-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.variant-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variant-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.variant-btn:hover {
  border-color: var(--primary-purple);
}

.variant-btn.active {
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(139, 69, 255, 0.3);
}

.variant-name {
  font-weight: 600;
  font-size: 1rem;
  grid-column: 1;
  grid-row: 1;
}

.variant-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  grid-column: 1;
  grid-row: 2;
}

.variant-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-purple);
  grid-column: 2;
  grid-row: 1 / span 2;
}

.coupon-section {
  margin-bottom: 2rem;
}

.coupon-section label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

#coupon-code {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-btn, .add-to-cart-btn {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

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

.checkout-btn:hover {
  background: #a259ff;
  transform: translateY(-2px);
}

.add-to-cart-btn {
  background: #2a2a2a;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.add-to-cart-btn:hover {
  background: #3a3a3a;
  border-color: var(--primary-purple);
}

.product-status {
  padding: 0.75rem 1.5rem;
  background: rgba(139, 69, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--primary-purple);
  font-weight: 600;
  text-align: center;
}

.proof-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proof-text-area {
  text-align: left;
}

.proof-text-area h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.proof-text-area p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.proof-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.proof-image-area img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Community Section */
.community {
  padding: 8rem 0;
  background: transparent;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.community-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.community-features {
  margin-bottom: 3rem;
}

.community-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: #5865f2;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discord-cta:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4);
}

.community-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--glow-color);
  box-shadow: 0 20px 40px rgba(139, 69, 255, 0.1);
}

.stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-card .stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
}

/* Pricing Hero */
.pricing-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.pricing-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-proof .proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-proof .proof-item i {
  color: var(--primary-purple);
  font-size: 1.1rem;
}

/* Features Preview */
.features-preview {
  padding: 6rem 0;
  background: transparent;
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Default to two columns */
  gap: 4rem;
  align-items: center;
}

.showcase-images {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(139, 69, 255, 0.2);
}

.showcase-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-image.active {
  opacity: 1;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem; /* Moved below content for better flow on mobile */
}

.showcase-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.showcase-btn:hover,
.showcase-btn.active {
  background: rgba(139, 69, 255, 0.1);
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.showcase-btn i {
  font-size: 1.2rem;
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* New Animated Features Section */
.additional-features-section {
  padding: 4rem 0;
  background: transparent;
  border-top: 1px solid rgba(139, 69, 255, 0.1);
  border-bottom: 1px solid rgba(139, 69, 255, 0.1);
}

.animated-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item-compact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item-compact:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: none;
}

.feature-icon-compact {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text-content-compact h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.feature-text-content-compact p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 8rem 0;
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted minmax for smaller cards */
  gap: 1.5rem; /* Reduced gap */
  margin-bottom: 4rem;
  max-width: 900px; /* Constrain grid width */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout on larger screens */
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on very large screens if desired, but 2x2 is requested */
  }
}

.price-card {
  background: transparent;
  border-radius: 16px; /* Smaller border radius */
  padding: 1.5rem; /* Reduced padding */
  border: none;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  display: flex; /* Use flexbox for internal layout */
  flex-direction: column;
  justify-content: space-between; /* Distribute space */
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.05), rgba(255, 107, 157, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.price-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: none;
}

/* Remove specific popular/lifetime card styling as badges are removed */
.price-card.popular,
.price-card.lifetime {
  border-color: var(--border-color); /* Revert to default border */
  transform: none; /* Remove scale */
}

.price-card.popular:hover,
.price-card.lifetime:hover {
  transform: translateY(-10px); /* Keep hover effect */
  border-color: var(--glow-color);
  box-shadow: 0 30px 60px rgba(139, 69, 255, 0.2);
}

/* Remove badge styles */
.popular-badge,
.lifetime-badge {
  display: none;
}

.card-header {
  margin-bottom: 1rem; /* Reduced margin */
}

.card-header h3 {
  font-size: 1.4rem; /* Smaller heading */
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.3rem; /* Reduced margin */
}

.card-subtitle {
  color: var(--text-secondary);
  font-size: 0.85rem; /* Smaller font */
}

.price-display {
  margin-bottom: 1rem; /* Reduced margin */
}

.currency {
  font-size: 1.1rem; /* Smaller currency */
  font-weight: 600;
  color: var(--primary-purple);
  vertical-align: top;
}

.amount {
  font-size: 2.5rem; /* Smaller amount */
  font-weight: 900;
  color: var(--primary-purple);
}

.period {
  font-size: 0.8rem; /* Smaller period */
  color: var(--text-secondary);
  font-weight: 500;
}

.price-features {
  margin-bottom: 0.8rem; /* Reduced margin */
  text-align: left;
  flex-grow: 1; /* Allow features to take available space */
}

.price-features p {
  display: flex;
  align-items: flex-start; /* Align icon to top of text */
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.8rem; /* Smaller font */
  line-height: 1.4;
  margin-bottom: 0.4rem; /* Reduced margin between features */
}

.price-features p i {
  color: #22c55e;
  font-size: 0.8rem; /* Smaller icon */
  flex-shrink: 0;
  margin-top: 0.1em; /* Adjust icon vertical alignment */
}

.price-features .highlight {
  color: var(--primary-purple);
  font-weight: 600;
}

.price-features .highlight i {
  color: var(--primary-purple);
}

.stock-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.stock-info i {
  color: var(--primary-purple);
}

.stock-info.critical-stock {
  color: #ef4444; /* Red for low stock */
  font-weight: 600;
}

.stock-info.critical-stock i {
  color: #ef4444;
}

.payment-button-sellhub {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #4f46e5 !important; /* Use !important to override SellHub's inline styles if necessary */
  color: #000000 !important; /* Changed to black for better contrast on purple/pink gradient */
  border-radius: 0.375rem !important;
  font-weight: 500 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s !important;
  font-size: 1rem !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-block !important; /* Changed to inline-block to allow icon and text */
  align-items: center; /* Align icon and text vertically */
  justify-content: center; /* Center content */
  gap: 0.5rem; /* Space between text and icon */
  margin: 0 !important;
  position: relative; /* For button-shine effect */
  overflow: hidden; /* For button-shine effect */
}

.payment-button-sellhub:hover {
  background-color: #4338ca !important; /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4); /* Blue shadow */
}

.pricing-guarantee {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 2rem; /* Reduced padding */
  margin-bottom: 4rem;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 1rem; /* Reduced gap */
  text-align: left;
}

.guarantee-icon {
  width: 50px; /* Smaller icon */
  height: 50px; /* Smaller icon */
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 10px; /* Smaller border radius */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem; /* Smaller icon font */
  flex-shrink: 0;
}

.guarantee-text h4 {
  color: #22c55e;
  font-size: 1.2rem; /* Smaller heading */
  font-weight: 700;
  margin-bottom: 0.4rem; /* Reduced margin */
}

.guarantee-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem; /* Smaller font */
}

.alternative-payments {
  padding: 4rem 0;
  text-align: center;
  background: var(--darker-bg); /* Consistent with other dark sections */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.alternative-payments .section-header {
  margin-bottom: 2rem;
}

.alternative-payments .section-title {
  font-size: 2.5rem;
}

.alternative-payments .section-subtitle {
  font-size: 1.1rem;
}

.payment-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.payment-cta:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 40px rgba(139, 69, 255, 0.15);
}

.payment-cta p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: var(--card-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Smaller cards */
  gap: 1.5rem; /* Reduced gap */
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--glow-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 69, 255, 0.1);
}

.faq-question {
  padding: 1.5rem; /* Reduced padding */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: 1rem; /* Smaller heading */
  font-weight: 600;
  line-height: 1.4;
}

.faq-question i {
  color: var(--primary-purple);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem; /* Reduced padding */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Added opacity transition */
  opacity: 0; /* Hidden by default */
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  opacity: 1; /* Visible when active */
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem; /* Smaller font */
}

.faq-answer strong {
  color: var(--primary-purple);
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.1), rgba(255, 107, 157, 0.1));
  text-align: center;
}

.final-cta .cta-content h2 {
  font-size: 3rem; /* Smaller heading */
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.final-cta .cta-content p {
  font-size: 1.1rem; /* Smaller font */
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; /* Reduced gap */
  max-width: 500px;
  margin: 0 auto 3rem;
}

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

.cta-stat .stat-number {
  font-size: 2.2rem; /* Smaller number */
  font-weight: 800;
  color: var(--primary-purple);
  display: block;
  margin-bottom: 0.3rem;
}

.cta-stat .stat-label {
  font-size: 0.85rem; /* Smaller font */
  color: var(--text-secondary);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--card-bg);
  padding: 3rem 0 1.5rem; /* Reduced padding */
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; /* Reduced gap */
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.4rem; /* Smaller heading */
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--primary-purple);
}

.legal-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
}

.legal-badge i {
  color: #22c55e;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.legal-badge strong {
  color: #22c55e;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.legal-badge p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: var(--card-bg);
  margin: 2% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.close {
  color: var(--text-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary-purple);
}

.modal-body {
  margin-top: 1rem;
}

.modal-images {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.modal-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: none;
}

.modal-img.active {
  display: block;
}

.modal-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-btn {
  padding: 0.8rem 1.2rem;
  background: rgba(139, 69, 255, 0.1);
  color: var(--primary-purple);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-btn:hover,
.nav-btn.active {
  background: rgba(139, 69, 255, 0.2);
  border-color: var(--primary-purple);
  transform: translateY(-2px);
}

.modal-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.modal-details p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-details ul {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-details li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.modal-details li strong {
  color: var(--primary-purple);
  font-weight: 600;
}

.safety-note {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.safety-note i {
  color: #22c55e;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.safety-note span {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.safety-note strong {
  color: #22c55e;
  font-weight: 600;
}

/* Tilt Effect */
[data-tilt] {
  transform-style: preserve-3d;
}

/* Customer Portal Section */
.customer-portal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background: var(--darker-bg);
  position: relative; /* Changed from fixed to relative for standalone page */
  overflow-y: auto; /* Allow scrolling if content is tall */
}

.portal-container {
  max-width: 900px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 16rem); /* Adjust for padding */
}

.portal-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
  max-width: 500px; /* Max width for login card */
  position: relative; /* For close button positioning */
  transition: all 0.3s ease;
}

.portal-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 25px 60px rgba(139, 69, 255, 0.2);
}

.portal-card.hidden {
  display: none;
}

#portal-dashboard-card {
  max-width: 900px; /* Wider for dashboard */
}

.portal-header {
  margin-bottom: 2.5rem;
  position: relative; /* For close button */
}

.portal-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.portal-header .section-subtitle {
  font-size: 1rem;
  max-width: none;
}

.portal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139, 69, 255, 0.3);
}

.portal-login-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.portal-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 69, 255, 0.4);
}

.error-message {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  color: #ff4d4d;
  font-size: 0.9rem;
  text-align: center;
}

/* Version Switch Styles */
.version-switch {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 69, 255, 0.2);
}

.switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.switch-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.switch-label.advanced {
  color: rgba(139, 69, 255, 0.7);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 69, 255, 0.3);
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, #8B45FF, #7E29FF);
  transition: 0.4s;
}

input:checked + .slider {
  background: rgba(139, 69, 255, 0.2);
  border-color: rgba(139, 69, 255, 0.6);
}

input:focus + .slider {
  box-shadow: 0 0 1px rgba(139, 69, 255, 0.8);
}

input:checked + .slider:before {
  transform: translateX(30px);
  background: linear-gradient(135deg, #5a35ff, #5372ff);
}

.slider.round {
  border-radius: 30px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked ~ .switch-label {
  color: rgba(255, 107, 53, 0.9);
}

input:not(:checked) ~ .switch-label:first-child {
  color: rgba(139, 69, 255, 0.9);
}

.portal-features-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.portal-features-list h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.feature-item-small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-item-small i {
  color: #22c55e;
  font-size: 0.9rem;
}

/* Dashboard Styles */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-header .section-title {
  margin-bottom: 0;
}

.portal-logout-btn {
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--primary-pink);
  border: 1px solid var(--primary-pink);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem; /* For mobile */
}

.portal-logout-btn:hover {
  background: rgba(255, 107, 157, 0.1);
  transform: translateY(-2px);
}

.user-welcome {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  background: rgba(139, 69, 255, 0.05);
  border: 1px solid rgba(139, 69, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  justify-content: center;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 15px rgba(139, 69, 255, 0.3);
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary-pink);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.1);
}

.stat-box .stat-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stat-box .stat-label i {
  color: var(--primary-purple);
}

.stat-box .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
}

.dashboard-section:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 30px rgba(139, 69, 255, 0.1);
}

.dashboard-section .section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(139, 69, 255, 0.3);
}

.discord-claim-section .section-icon {
  background: #5865f2;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.download-section .section-icon {
  background: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.user-info-section .section-icon {
  background: #8b45ff;
  box-shadow: 0 0 15px rgba(139, 69, 255, 0.3);
}

.dashboard-section .section-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.dashboard-section .section-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.portal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
}

.portal-action-btn.discord-btn {
  background: #5865f2;
  color: white;
}

.portal-action-btn.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.portal-action-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: white;
}

.portal-action-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 69, 255, 0.3);
}

.highlight-text {
  color: var(--primary-purple);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* New Section: License Info CTA */
.license-info-cta {
  padding: 6rem 0;
  background: var(--darker-bg);
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.license-info-cta .section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.license-info-cta .section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.license-info-cta .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Responsive adjustments for portal */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .community-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .setup-content {
    grid-template-columns: 1fr;
  }

  .proof-content {
    grid-template-columns: 1fr;
  }

  .proof-text-area {
    text-align: center;
  }

  .proof-text-area h3 {
    text-align: center;
  }

  .proof-text-area p {
    text-align: center;
  }

  .discord-cta {
    margin: 0 auto;
  }

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

  .hero-background-video {
    padding: 6rem 2rem;
  }

  .hero-title {
    font-size: 4rem; /* Adjust for smaller screens */
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .custom-cursor,
  .cursor-follower {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-buttons {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

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

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

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

  .live-stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 1.5rem;
  }

  .modal-nav {
    justify-content: center;
  }

  .nav-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .showcase-nav {
    grid-template-columns: 1fr;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }

  .setup-text .section-title,
  .setup-text .section-subtitle {
    text-align: center;
  }

  .setup-schema {
    flex-direction: column;
  }

  .schema-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .comparison-table {
    grid-template-columns: 1fr; /* Stack columns on mobile */
  }

  .header-cell,
  .feature-cell,
  .status-cell {
    border-right: none; /* Remove vertical borders on mobile */
    text-align: left !important; /* Force left align for all cells on mobile */
    padding-left: 1rem !important; /* Adjust padding */
  }

  .header-cell:first-child {
    padding-left: 1rem !important;
  }

  .table-row {
    border-bottom: 1px solid var(--border-color); /* Add horizontal border between rows */
    margin-bottom: 1rem; /* Space between rows */
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .table-row .feature-cell {
    background: rgba(255, 255, 255, 0.05); /* Highlight feature name */
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .table-row .status-cell {
    padding: 0.6rem 1rem;
    justify-content: flex-start; /* Align icons to left */
    gap: 0.5rem;
  }

  .table-row .status-cell::before {
    content: "Basic: "; /* Add labels for clarity */
    color: var(--text-muted);
    font-weight: 400;
  }

  .table-row .status-cell:last-child::before {
    content: "Advanced: ";
  }

  .customer-portal-section {
    padding: 6rem 1rem;
  }
  .portal-card {
    padding: 2rem 1.5rem;
  }
  .portal-header .section-title {
    font-size: 2rem;
  }
  .portal-login-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .portal-logout-btn {
    width: 100%;
    margin-top: 1.5rem;
  }
  .user-welcome {
    font-size: 1rem;
  }
  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dashboard-section .section-icon {
    margin-bottom: 1rem;
  }
  .portal-action-btn {
    width: 100%;
  }
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .license-info-cta .section-title {
    font-size: 2.2rem;
  }
  .license-info-cta .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .modal-img {
    height: 250px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .price-display .amount {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .final-cta .cta-content h2 {
    font-size: 2.5rem;
  }

  .proof-text-area h3 {
    font-size: 2rem;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active li {
    margin: 1rem 0;
  }

  .nav-menu.active .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Performance Optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-purple);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Product Page Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-thumbs {
  display: flex;
  gap: 1rem;
}

.gallery-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gallery-thumbs img:hover {
  transform: scale(1.05);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-rating {
  color: var(--primary-purple);
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-purple);
}

.product-variant select,
.product-coupon input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-primary);
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.alt-payments {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

