/* CSS Variables for BaseHub-inspired dark theme */
:root {
  /* BaseHub-inspired color palette */
  --background: 0 0% 4%;
  --foreground: 0 0% 98%;
  --card: 0 0% 6%;
  --card-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 8%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 8%;
  --muted-foreground: 0 0% 65%;
  --accent: 217 65% 50%;
  --accent-foreground: 0 0% 98%;
  --border: 0 0% 12%;
  --input: 0 0% 8%;
  --ring: 262 83% 58%;
  --radius: 0.5rem;
  
  /* Gaming theme colors - Blue theme */
  --gaming-primary: 217 65% 50%;
  --gaming-secondary: 217 65% 50%;
  --gaming-accent: 217 65% 50%;
  
  /* Spacing */
  --header-height: 64px;
  --container-padding: 2rem;
  
  /* Typography */
  --font-family: 'Associate Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Light mode (optional) */
.light {
  --background: 0 0% 100%;
  --foreground: 0 0% 4%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 4%;
  --primary: 0 0% 4%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 4%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --accent: 217 65% 50%;
  --accent-foreground: 0 0% 98%;
  --border: 0 0% 90%;
  --input: 0 0% 96%;
  --ring: 262 83% 58%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Navigation - Fixed at top */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: auto;
  position: relative;
}

.brand-link {
  text-decoration: none;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Associate Sans', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-text {
  color: hsl(var(--foreground));
}

.brand-domain {
  color: hsl(var(--accent));
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: auto;
}

.nav-link {
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  font-family: 'Associate Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.login-btn {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  font-family: 'Associate Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.discord-btn {
  background: #325fbb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Associate Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  margin-left: auto;
}

.discord-btn:hover {
  background: #2a5299;
  transform: translateY(-1px);
}

.discord-btn svg {
  flex-shrink: 0;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: hsl(var(--muted) / 0.1);
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: hsl(var(--foreground));
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 1px;
}


/* Sections - BaseHub inspired */
section {
  padding: 5rem 0;
}

/* Add padding to main content to account for fixed navbar */
main {
  padding-top: 80px;
}

/* Mobile main content padding adjustment */
@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.features-section .section-title {
  color: hsl(var(--foreground));
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-weight: 400;
}

/* Products Section - Clean Modern Design */
.products-section {
  padding: 3rem 0 6rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: hsl(var(--accent));
}

.product-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card:hover .product-img {
  transform: none;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.product-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid hsl(var(--border));
}

.product-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.product-button {
  background: #325fbb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: inherit;
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 140px;
  white-space: nowrap;
}

.product-button:hover {
  background: #2a5299;
  transform: translateY(-1px);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  letter-spacing: -0.01em;
}

.product-variants {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.variant-option {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid hsl(var(--border));
}


/* Features Section - BaseHub inspired */
.features-section {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gradient-bg {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent) / 0.8));
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: hsl(var(--accent-foreground));
  font-weight: 700;
  font-size: 1.25rem;
}

.card-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
}

.card-content {
  text-align: left;
}

.card-content p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
}

.review-info h4 {
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.review-info p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  margin: 0;
}

.review-content {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--accent));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: hsl(var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--secondary-foreground));
  font-weight: 600;
  font-size: 1.125rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.step-number {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: hsl(var(--accent));
  background: linear-gradient(135deg, hsl(var(--accent) / 0.1), hsl(var(--accent) / 0.05));
  border-radius: 0.75rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
}

.feature-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Reviews Section */
.reviews-section {
  padding: 0;
  background: hsl(var(--background));
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-scroll-container {
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-scroll-container::before,
.reviews-scroll-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.reviews-scroll-container::before {
  top: 0;
  background: linear-gradient(to bottom, hsl(var(--background)), transparent);
}

.reviews-scroll-container::after {
  bottom: 0;
  background: linear-gradient(to top, hsl(var(--background)), transparent);
}

.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.reviews-track:nth-child(1) {
  animation: scroll-up 40s linear infinite;
}

.reviews-track:nth-child(2) {
  animation: scroll-down 50s linear infinite;
}

.reviews-track:nth-child(3) {
  animation: scroll-up 40s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.review-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.2s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  background: linear-gradient(135deg, #325fbb, #2a5299);
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem 0;
}

.user-role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-quote {
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: hsl(var(--foreground));
  font-style: italic;
  margin: 0;
}






/* Footer - Enhanced */
.footer {
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  margin-top: 4rem;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.footer-brand .brand-domain {
  color: hsl(var(--accent));
}

.footer-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--accent));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-copyright {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0;
}

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

.social-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
}

.social-link:hover {
  color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
  border-color: hsl(var(--accent));
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: hsl(var(--accent));
}

.breadcrumb-separator {
  color: hsl(var(--muted-foreground));
}

.breadcrumb-current {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* Product Thumbnails */
.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 140px;
  height: 105px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.thumbnail:hover {
  border-color: hsl(var(--accent));
}

.thumbnail.active {
  border-color: hsl(var(--accent));
}

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

/* Pricing Option Selection */
.pricing-option.selected {
  border-color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
}

.pricing-option.selected .option-text {
  color: hsl(var(--accent));
  font-weight: 600;
}
/* Product Hero Section - Redesigned Layout */
.product-hero {
  padding: 4rem 0 6rem;
  background: hsl(var(--background));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side - Image Only */
.product-image-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-large {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

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

.product-thumbnails {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Right Side - Product Info & Pricing */
.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 6rem;
}

.product-header {
  margin-bottom: 0;
}

.product-header .product-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

.product-header .product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-header .stars {
  color: #fbbf24;
  font-size: 1.125rem;
}

.product-header .rating-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.buy-button {
  width: 100%;
  background: #325fbb;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: #2a5299;
  transform: translateY(-1px);
}

.discord-support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.discord-support-btn:hover {
  background: hsl(var(--accent));
  color: white;
  border-color: hsl(var(--accent));
}

/* Pricing Section - Cleaner Design */
.pricing-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  text-align: left;
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: hsl(var(--background));
  text-align: center;
}

.pricing-option:hover {
  border-color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.05);
}

.pricing-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pricing-option.selected {
  border-color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
}

.pricing-option.selected .option-text {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.option-text {
  font-weight: 500;
  color: hsl(var(--foreground));
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.option-price {
  font-weight: 700;
  color: hsl(var(--accent));
  font-size: 1rem;
}

.best-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: hsl(var(--accent));
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Total Price - Cleaner */
.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: hsl(var(--card));
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  margin-bottom: 1rem;
}

.total-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.total-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--accent));
}

.payment-methods {
  text-align: center;
}

.payment-methods h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.payment-icon {
  font-size: 1.25rem;
}

/* Product Tabs Section */
.product-details-section {
  padding: 3rem 0;
  background: hsl(var(--background));
}

.product-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border));
}

.product-tab {
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Associate Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

.product-tab:hover {
  color: hsl(var(--foreground));
}

.product-tab.active {
  color: hsl(var(--foreground));
  border-bottom-color: hsl(var(--accent));
  font-weight: 600;
}

.product-tab-content {
  min-height: 300px;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.active {
  display: block;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: hsl(var(--accent) / 0.3);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.5rem 0;
}

.feature-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-category {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.requirement-category h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-list li {
  padding: 0.5rem 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.requirement-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--accent));
  font-weight: 600;
}

/* FAQ Items */
.faq-items {
  margin-top: 2rem;
}

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: hsl(var(--accent) / 0.3);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: hsl(var(--muted) / 0.05);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 0;
}

.faq-icon {
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.faq-answer p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}

/* Legal Pages Styles */
.legal-section {
  padding: 2rem 0 4rem;
  background: hsl(var(--background));
}


.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal-content .last-updated {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 1.5rem 0 0.75rem 0;
}

.legal-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.legal-content .important-notice {
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-content .important-notice p {
  color: hsl(var(--foreground));
  margin-bottom: 0;
}

.legal-content .warning-notice {
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-content .warning-notice p {
  color: hsl(var(--foreground));
  margin-bottom: 0;
}

.legal-content .risk-warning {
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-content .risk-warning h3 {
  color: hsl(var(--destructive));
  margin-top: 0;
  margin-bottom: 1rem;
}

.legal-content .disclaimer {
  font-weight: 600;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Success Page Styles */
.success-section {
  padding: 2rem 0;
  background: hsl(var(--background));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.success-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  padding: 3.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.success-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(120, 65%, 50%), hsl(120, 65%, 45%));
}

.success-icon {
  color: hsl(120, 65%, 50%);
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease-out;
}

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

.success-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

/* Success Section - Clean Card Design */
.zen-script-info {
  margin-top: 2rem;
  animation: fadeIn 0.4s ease-in;
}

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

.zen-success-content {
  text-align: center;
}

.success-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, hsl(120, 65%, 95%) 0%, hsl(120, 65%, 90%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(120, 65%, 50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  animation: scaleIn 0.5s ease-out;
}

.zen-success-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.zen-message {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.discord-instructions {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--accent) / 0.02) 100%);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2.5rem;
  margin: 2.5rem 0;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.discord-instructions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--accent) / 0.6));
}

.discord-instructions h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-instructions p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.discord-instructions ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
}

.discord-instructions li {
  counter-increment: step-counter;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: hsl(var(--foreground));
  padding-left: 2.5rem;
  position: relative;
  font-size: 1rem;
}

.discord-instructions li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: hsl(var(--accent));
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.discord-instructions li:last-child {
  margin-bottom: 0;
}

.discord-instructions strong {
  color: hsl(var(--accent));
  font-weight: 600;
  background: hsl(var(--accent) / 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
}

.zen-actions {
  margin-top: 2.5rem;
}

.zen-actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.zen-actions .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.zen-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.order-details {
  margin: 2rem 0;
  text-align: left;
}

.order-details h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--accent) / 0.05);
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
}

.step-number {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.success-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border: 1px solid hsl(var(--accent));
}

.btn-primary:hover {
  background: hsl(var(--accent) / 0.9);
}

.btn-secondary {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
  background: hsl(var(--accent) / 0.1);
}

.order-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.order-info p {
  margin: 0.5rem 0;
}

.order-info a {
  color: hsl(var(--accent));
  text-decoration: none;
}

.order-info a:hover {
  text-decoration: underline;
}

/* License Key Display Styles */
.license-info {
  margin: 2rem 0 0 0;
  text-align: left;
}

.license-header {
  text-align: center;
  margin-bottom: 2rem;
}

.license-header h2 {
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.license-header .product-info {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  font-weight: 500;
}

.license-key-container {
  margin-bottom: 1.5rem;
}

.license-key-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
}

.license-key-box code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--accent));
  background: transparent;
  padding: 0;
  word-break: break-all;
}

.copy-btn {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.copy-btn:hover {
  background: hsl(var(--accent) / 0.9);
}

.copy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-info, .purchase-date {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
}

.license-warning {
  background: linear-gradient(135deg, hsl(45, 100%, 95%) 0%, hsl(45, 100%, 92%) 100%);
  border: 1px solid hsl(45, 100%, 80%);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-content h3 {
  margin: 0 0 0.5rem 0;
  color: hsl(45, 100%, 25%);
  font-size: 1.125rem;
  font-weight: 600;
}

.warning-content p {
  margin: 0;
  color: hsl(45, 100%, 25%);
  font-size: 0.95rem;
  line-height: 1.5;
}

.next-steps {
  margin: 2rem 0;
  text-align: center;
}

.next-steps h3 {
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.step {
  background: hsl(var(--accent) / 0.05);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem auto;
}

.step-content h4 {
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

/* Loading and Error States */
.loading-info {
  text-align: center;
  padding: 2rem;
  color: hsl(var(--muted-foreground));
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid hsl(var(--border));
  border-top: 4px solid hsl(var(--accent));
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

.error-info {
  background: linear-gradient(135deg, hsl(0, 100%, 97%) 0%, hsl(0, 100%, 95%) 100%);
  border: 1px solid hsl(0, 100%, 85%);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  color: hsl(0, 100%, 25%);
  margin-top: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.error-info h3 {
  color: hsl(0, 100%, 30%);
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.error-info p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.error-info p:last-of-type {
  margin-bottom: 0;
}

.error-info a {
  color: hsl(0, 100%, 40%);
  text-decoration: underline;
  font-weight: 500;
}

/* Setup Guide Specific Styles */
.hero-warning {
  margin: 2rem 0;
}

.warning-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-content h3 {
  margin: 0 0 0.5rem 0;
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  font-weight: 600;
}

.warning-content p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h5 {
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.faq-item p {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.support-actions {
  margin-top: 1.5rem;
}

.support-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .product-hero {
    padding: 2rem 0 3rem;
    min-height: 100vh;
  }
  
  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .product-image-section {
    order: 1;
  }
  
  .product-info-section {
    order: 2;
    padding-top: 0;
  }
  
  .product-header .product-name {
    font-size: 2rem;
    text-align: center;
  }
  
  .product-header .product-rating {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .product-image-large {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .product-thumbnails {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .thumbnail {
    width: 80px;
    height: 60px;
  }
  
  .pricing-section {
    margin-bottom: -2rem;
  }
  
  .pricing-title {
    text-align: center;
    font-size: 1.125rem;
  }
  
  .pricing-options {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .pricing-option {
    padding: 0.75rem;
  }
  
  .action-buttons {
    gap: 0.75rem;
  }
  
  .buy-button {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
  
  .discord-support-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .breadcrumb {
    justify-content: center;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
    min-height: 60px;
  }

  .nav-container {
    padding: 0 1rem;
    min-height: 44px;
  }

  .brand-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem !important;
  }

  .brand-link .brand-text {
    font-size: 1.6rem !important;
  }

  .discord-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    width: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .products-section {
    padding: 2rem 0 4rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .product-content {
    padding: 1rem;
  }
  
  .product-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .product-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .product-features {
    justify-content: center;
    margin: 1rem 0;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  
  .product-pricing {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .product-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    width: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .section-subtitle {
    font-size: 1rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-image {
    aspect-ratio: 16/9;
    height: auto;
  }

  .product-details {
    padding: 1rem;
  }

  .product-title {
    font-size: 1.25rem;
  }

  .product-variants {
    gap: 0.25rem;
  }

  .variant-option {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .product-price {
    font-size: 1.25rem;
  }

  .features-section {
    padding: 3rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .feature-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 1rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.85rem;
  }

  .reviews-section {
    height: auto;
    padding: 3rem 0;
    min-height: 60vh;
  }

  .reviews-scroll-container {
    height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0;
    padding: 0 1rem;
  }

  .reviews-track:nth-child(2),
  .reviews-track:nth-child(3) {
    display: none;
  }

  .review-card {
    padding: 1.25rem;
    min-height: auto;
    margin-bottom: 1rem;
  }
  
  .review-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .review-user {
    justify-content: center;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 1rem;
  }

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

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.8rem;
  }

  .footer {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }

  .footer-brand {
    align-items: center;
    max-width: none;
  }
  
  .footer-brand .brand-text {
    font-size: 1.25rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column {
    align-items: center;
  }
  
  .footer-heading {
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
  }

  .container {
    padding: 0 1rem;
  }

  .faq-section .container {
    max-width: 1400px !important;
  }

  section {
    padding: 3rem 0;
  }

  .footer {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  /* Product Tabs Mobile Styles */
  .product-details-section {
    padding: 2rem 0;
  }

  .product-tabs-container {
    padding: 0 1rem;
  }

  .product-tabs {
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 1.5rem;
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tab {
    flex-shrink: 0;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .product-tab-content {
    min-height: auto;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 0.5rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  /* Requirements Grid Mobile */
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .requirement-category {
    padding: 1rem;
  }

  .requirement-category h3 {
    font-size: 1rem;
  }

  .requirement-list li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
  }

  /* FAQ Mobile */
  .faq-item {
    margin-bottom: 0.75rem;
  }

  .faq-question {
    padding: 1rem;
  }

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

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  /* Legal Pages Mobile */
  .legal-section {
    padding: 1.5rem 0 3rem;
  }

  .legal-content {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
  }

  .legal-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .legal-content h2 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
  }

  .legal-content h3 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem 0;
  }

  .legal-content p {
    font-size: 0.9rem;
  }

  .legal-content .important-notice,
  .legal-content .warning-notice,
  .legal-content .risk-warning {
    padding: 1rem;
    margin: 1rem 0;
  }

  /* Success Page Mobile */
  .success-section {
    padding: 2rem 0;
    min-height: 70vh;
  }

  .success-content {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
  }

  .success-content h1 {
    font-size: 2rem;
  }

  .success-message {
    font-size: 1rem;
  }

  .success-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .success-actions .btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  /* Success Page Mobile */
  .success-content {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .success-content h1 {
    font-size: 2rem;
  }

  .license-header h2 {
    font-size: 1.75rem;
  }

  .license-key-box {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .license-key-box code {
    font-size: 1rem;
    word-break: break-all;
  }

  .copy-btn {
    width: 100%;
    padding: 0.75rem;
  }

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

  .step {
    padding: 1rem;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .success-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .success-actions .btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .warning-content h3 {
    font-size: 1rem;
  }

  .loading-info {
    padding: 1.5rem;
  }

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

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

  .section-subtitle {
    font-size: 0.9rem;
  }

  .products-section {
    padding: 1.5rem 0 3rem;
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .product-content {
    padding: 0.75rem;
  }
  
  .product-title {
    font-size: 1.125rem;
  }
  
  .product-description {
    font-size: 0.85rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

  .product-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .features-section {
    padding: 2rem 0;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-description {
    font-size: 0.8rem;
  }

  .reviews-section {
    padding: 2rem 0;
    min-height: 50vh;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .review-quote {
    font-size: 0.8rem;
  }

  .footer {
    padding: 1.5rem 0 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-content {
    padding: 0 0.75rem;
    gap: 1.5rem;
  }
  
  .footer-brand .brand-text {
    font-size: 1.125rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
  
  .footer-heading {
    font-size: 0.8rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 1rem;
  }
  
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}

