* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0d2e 50%, #0f0f0f 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

h1 { 
  font-family: 'Poppins', sans-serif; 
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, h3 { 
  font-family: 'Poppins', sans-serif; 
  font-weight: 600;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 69, 255, 0.15);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-tabs {
  display: flex;
  gap: 4px;
  background: rgba(26, 13, 46, 0.4);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(139, 69, 255, 0.2);
}

.nav-tab {
  background: transparent;
  border: none;
  color: #b0b0dd;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.nav-tab:hover {
  background: rgba(139, 69, 255, 0.15);
  color: #ffffff;
}

.nav-tab.active {
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.3), rgba(168, 85, 247, 0.3));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 69, 255, 0.2);
}

.discord-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
  background: linear-gradient(135deg, #4752C4, #3c44a8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5);
}

.discord-btn svg {
  width: 20px;
  height: 20px;
}

.hero {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #0f0f0f 100%);
  text-align: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 { 
  font-size: clamp(3rem, 8vw, 6rem); 
  color: #ffffff; 
  text-shadow: 0 0 60px rgba(139, 69, 255, 0.6);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.highlight { 
  color: #8b45ff; 
  text-shadow: 0 0 60px #8b45ff; 
}

.tagline { 
  font-size: clamp(1rem, 2.5vw, 1.3rem); 
  margin: 24px 0; 
  color: #c0c0ff; 
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #9090cc;
  margin-top: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.price { 
  font-size: clamp(2.5rem, 6vw, 4.5rem); 
  margin: 48px 0; 
  color: #ffffff; 
  font-weight: 700;
}

.old-price { 
  text-decoration: line-through; 
  color: #888; 
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  margin-left: 16px;
}

.buy-btn {
  background: linear-gradient(135deg, #8b45ff 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
  padding: 20px 48px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(139, 69, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.buy-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;
}

.buy-btn:hover::before {
  left: 100%;
}

.buy-btn:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 16px 56px rgba(139, 69, 255, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.previews, .features, .trust { 
  padding: 120px 0; 
  text-align: center; 
}

.previews h2, .features h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 64px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
}

.gallery { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.gallery img { 
  width: 100%;
  max-width: 450px;
  border-radius: 20px; 
  box-shadow: 0 16px 64px rgba(139, 69, 255, 0.3);
  border: 1px solid rgba(139, 69, 255, 0.2);
  transition: all 0.3s ease;
}

.gallery img:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(139, 69, 255, 0.5);
}

.feature-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 32px; 
  margin-top: 64px; 
}

.feature-card {
  background: rgba(26, 13, 46, 0.6);
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(139, 69, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b45ff, #a855f7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 24px 64px rgba(139, 69, 255, 0.4);
  border-color: rgba(139, 69, 255, 0.6);
}

.feature-card h3 { 
  color: #8b45ff; 
  margin-bottom: 16px; 
  font-size: 1.5rem;
  font-weight: 600;
}

.feature-card p {
  color: #e0e0ff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.badges { 
  display: flex; 
  justify-content: center; 
  gap: 24px; 
  margin-bottom: 64px; 
  flex-wrap: wrap; 
}

.badges div {
  background: rgba(139, 69, 255, 0.15);
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid rgba(139, 69, 255, 0.4);
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(139, 69, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badges div:hover {
  transform: translateY(-4px);
  border-color: #8b45ff;
  box-shadow: 0 12px 40px rgba(139, 69, 255, 0.4);
}

footer { 
  text-align: center; 
  padding: 64px 24px; 
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0d2e 100%);
  border-top: 1px solid rgba(139, 69, 255, 0.2);
  color: #888;
}

footer a {
  color: #8b45ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #a855f7;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.tab-content-wrapper {
  min-height: 60vh;
}

.tab-content {
  display: none;
  padding: 80px 0;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 48px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  text-align: left;
}

.feature-list li {
  padding: 8px 0;
  color: #c0c0ff;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "→ ";
  color: #8b45ff;
  margin-right: 8px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.4);
  border-radius: 24px;
  padding: 48px 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: rgba(139, 69, 255, 0.8);
  box-shadow: 0 16px 64px rgba(139, 69, 255, 0.3);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(139, 69, 255, 0.4);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  background: linear-gradient(135deg, #8b45ff, #a855f7);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #ffffff;
}

.pricing-amount {
  margin: 32px 0;
}

.price-large {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
}

.price-old {
  font-size: 1.8rem;
  color: #888;
  text-decoration: line-through;
  margin-left: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: #c0c0ff;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(139, 69, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b45ff;
}

.badge-label {
  font-size: 0.95rem;
  color: #c0c0ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.executors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.executor-card {
  background: rgba(26, 13, 46, 0.6);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.executor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 69, 255, 0.6);
  box-shadow: 0 12px 32px rgba(139, 69, 255, 0.3);
}

.executor-icon {
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 4px;
}

.executor-icon.star {
  background: rgba(139, 69, 255, 0.2);
  color: #8b45ff;
}

.executor-icon.check {
  background: rgba(139, 69, 255, 0.15);
  color: #8b45ff;
}

.executor-icon.x {
  background: rgba(139, 69, 255, 0.1);
  color: #8b45ff;
}

.executor-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  align-self: flex-start;
}

.status-badge.developed {
  background: rgba(139, 69, 255, 0.2);
  color: #8b45ff;
}

.status-badge.recommended {
  background: rgba(139, 69, 255, 0.2);
  color: #8b45ff;
}

.status-badge.untested {
  background: rgba(139, 69, 255, 0.15);
  color: #a890ff;
}

.status-badge.not-supported {
  background: rgba(139, 69, 255, 0.1);
  color: #9080cc;
}

.executor-description {
  text-align: center;
  margin-bottom: 48px;
  color: #b0b0dd;
  font-size: 1.05rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.games-section {
  margin: 48px 0;
  text-align: center;
}

.games-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 32px;
  font-weight: 600;
}

.games-subtitle {
  font-size: 1.1rem;
  color: #b0b0dd;
  margin-bottom: 32px;
  font-weight: 400;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.6), rgba(45, 27, 78, 0.4));
  border: 2px solid rgba(139, 69, 255, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 69, 255, 0.6);
  box-shadow: 0 16px 48px rgba(139, 69, 255, 0.4);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(139, 69, 255, 0.3));
}

.game-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.game-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 69, 255, 0.2);
  border: 1px solid rgba(139, 69, 255, 0.4);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #8b45ff;
  font-weight: 600;
  margin-top: 8px;
}

.game-card:hover .game-badge {
  background: rgba(139, 69, 255, 0.3);
  border-color: #8b45ff;
}

.game-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 20px;
}

.game-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);
  padding: 48px;
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(139, 69, 255, 0.5);
  border: 2px solid rgba(139, 69, 255, 0.3);
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(139, 69, 255, 0.2);
  border: 2px solid rgba(139, 69, 255, 0.4);
  color: #ffffff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(139, 69, 255, 0.4);
  border-color: #8b45ff;
  transform: rotate(90deg);
}

#modal-body h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#modal-body .game-icon {
  font-size: 3rem;
  margin: 0;
}

#modal-body p {
  font-size: 1.1rem;
  color: #c0c0ff;
  margin-bottom: 32px;
  line-height: 1.8;
}

#modal-body h3 {
  font-size: 1.8rem;
  color: #8b45ff;
  margin: 32px 0 16px 0;
}

#modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#modal-body ul li {
  padding: 12px 0;
  color: #e0e0ff;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(139, 69, 255, 0.1);
}

#modal-body ul li::before {
  content: "✓ ";
  color: #8b45ff;
  font-weight: bold;
  margin-right: 12px;
}

#modal-body ul li:last-child {
  border-bottom: none;
}

.showcase-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.showcase-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(139, 69, 255, 0.15);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.showcase-link:hover {
  background: rgba(139, 69, 255, 0.25);
  border-color: #8b45ff;
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(139, 69, 255, 0.3);
}

.showcase-link svg {
  flex-shrink: 0;
  color: #ff0000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.modal-content {
  background: #1a0d2e;
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 48px auto;
  box-shadow: 0 16px 48px rgba(139, 69, 255, 0.4);
}

.modal-content h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.modal-content p {
  font-size: 1.1rem;
  color: #c0c0ff;
  margin-bottom: 32px;
}

.modal-content button {
  background: #8b45ff;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #a855f7;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-tab {
    width: 100%;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .tab-content {
    padding: 60px 0;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .executors-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 32px;
  }
  
  .previews, .features, .trust {
    padding: 80px 0;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.modal-content button:hover {
  background: #a855f7;
}

/* Checkout Page Styles - Advanced Design */

.back-link {
  color: #8b45ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-link:hover {
  color: #a855f7;
  transform: translateX(-4px);
}

.checkout-section {
  min-height: 100vh;
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0d2e 50%, #0f0f0f 100%);
}

.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(26, 13, 46, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 69, 255, 0.2);
  border: 2px solid rgba(139, 69, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #8b45ff;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, #8b45ff, #a855f7);
  border-color: #8b45ff;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(139, 69, 255, 0.5);
}

.step-label {
  font-size: 0.9rem;
  color: #9090cc;
  font-weight: 500;
}

.step.active .step-label {
  color: #ffffff;
}

.step-line {
  width: 120px;
  height: 2px;
  background: rgba(139, 69, 255, 0.2);
  margin: 0 16px;
}

/* Checkout Grid Layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Order Summary Sidebar */
.order-summary-sidebar {
  position: sticky;
  top: 100px;
}

.summary-card {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.4);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.summary-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
}

.product-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(139, 69, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
}

.product-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 12px rgba(139, 69, 255, 0.4));
}

.product-details h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 600;
}

.product-details p {
  font-size: 0.95rem;
  color: #b0b0dd;
  margin: 0;
}

.summary-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 69, 255, 0.3), transparent);
  margin: 20px 0;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #c0c0ff;
}

.discount-value {
  color: #4ade80;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(139, 69, 255, 0.15);
  border-radius: 12px;
  margin-top: 8px;
}

.summary-total span:first-child {
  font-size: 1.1rem;
  color: #c0c0ff;
  font-weight: 600;
}

.summary-total span:last-child {
  font-size: 2rem;
  color: #8b45ff;
  font-weight: 700;
}

.security-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.security-badges .badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(139, 69, 255, 0.1);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #8b45ff;
  font-weight: 500;
}

.security-badges .badge svg {
  flex-shrink: 0;
}

/* Payment Section */
.payment-section {
  min-height: 600px;
}

.section-heading {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.payment-card {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.payment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 69, 255, 0.6);
  box-shadow: 0 16px 48px rgba(139, 69, 255, 0.4);
}

.payment-card.selected {
  border-color: #8b45ff;
  background: rgba(139, 69, 255, 0.15);
  box-shadow: 0 12px 40px rgba(139, 69, 255, 0.5);
}

.payment-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #8b45ff;
}

.payment-icon svg {
  width: 48px;
  height: 48px;
  color: #8b45ff;
}

.payment-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.payment-card p {
  font-size: 0.9rem;
  color: #b0b0dd;
  margin: 0;
}

.payment-form {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.4);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
}

.payment-form h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
}

.manual-payment-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-label {
  font-size: 1.1rem;
  color: #c0c0ff;
  font-weight: 500;
  margin-bottom: 8px;
}

.payment-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(139, 69, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(139, 69, 255, 0.2);
}

.detail-label {
  font-size: 1rem;
  color: #b0b0dd;
  min-width: 100px;
}

.detail-value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  flex: 1;
}

.copy-btn {
  background: rgba(139, 69, 255, 0.2);
  border: 1px solid rgba(139, 69, 255, 0.4);
  color: #8b45ff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.copy-btn:hover {
  background: rgba(139, 69, 255, 0.3);
  border-color: #8b45ff;
}

.payment-instruction {
  font-size: 1rem;
  color: #c0c0ff;
  margin-top: 12px;
}

.transaction-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(139, 69, 255, 0.1);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.transaction-input:focus {
  outline: none;
  border-color: #8b45ff;
  background: rgba(139, 69, 255, 0.15);
}

.transaction-input::placeholder {
  color: #8080aa;
}

.submit-payment-btn {
  width: 100%;
  background: linear-gradient(135deg, #8b45ff 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  margin-top: 12px;
}

.submit-payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 69, 255, 0.6);
}

.payment-note {
  text-align: center;
  font-size: 0.9rem;
  color: #9090cc;
  margin-top: 16px;
}

.crypto-options {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.crypto-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  background: rgba(139, 69, 255, 0.1);
  border: 1px solid rgba(139, 69, 255, 0.3);
  color: #c0c0ff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.crypto-btn:hover {
  background: rgba(139, 69, 255, 0.2);
  border-color: rgba(139, 69, 255, 0.5);
}

.crypto-btn.active {
  background: rgba(139, 69, 255, 0.3);
  border-color: #8b45ff;
  color: #ffffff;
}

.crypto-address-container {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: rgba(139, 69, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(139, 69, 255, 0.2);
  margin-bottom: 20px;
}

.crypto-address {
  flex: 1;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  word-break: break-all;
  font-family: 'Courier New', monospace;
}

#stripe-card-element {
  padding: 16px;
  background: rgba(139, 69, 255, 0.1);
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 10px;
  margin-bottom: 24px;
}

/* About Page Styles */
.nav-link {
  color: #b0b0dd;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
  background: rgba(139, 69, 255, 0.15);
  color: #ffffff;
}

.nav-link.active {
  background: rgba(139, 69, 255, 0.2);
  color: #ffffff;
}

.about-hero {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #0f0f0f 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
}

.about-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #c0c0ff;
  font-weight: 400;
  position: relative;
}

.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0d2e 50%, #0f0f0f 100%);
}

.about-section.alt-bg {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0d2e 100%);
}

.about-card {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.4);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  max-width: 1000px;
  margin: 0 auto;
}

.card-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(139, 69, 255, 0.3));
}

.about-card h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
}

.about-card p {
  font-size: 1.1rem;
  color: #c0c0ff;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-card strong {
  color: #8b45ff;
  font-weight: 600;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(139, 69, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 255, 0.2);
}

.benefit-icon {
  font-size: 2rem;
  color: #8b45ff;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-item p {
  font-size: 1rem;
  color: #c0c0ff;
  margin: 0;
  line-height: 1.6;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.privacy-list li {
  padding: 12px 0;
  color: #c0c0ff;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(139, 69, 255, 0.1);
}

.privacy-list li:last-child {
  border-bottom: none;
}

.privacy-note {
  background: rgba(139, 69, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #8b45ff;
  margin-top: 24px;
  font-size: 1.05rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  background: rgba(139, 69, 255, 0.1);
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(139, 69, 255, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 69, 255, 0.5);
  box-shadow: 0 12px 32px rgba(139, 69, 255, 0.3);
}

.value-item h3 {
  font-size: 1.3rem;
  color: #8b45ff;
  margin-bottom: 12px;
  font-weight: 600;
}

.value-item p {
  font-size: 1rem;
  color: #c0c0ff;
  margin: 0;
  line-height: 1.6;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(26, 13, 46, 0.6);
  border: 2px solid rgba(139, 69, 255, 0.4);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #8b45ff;
  box-shadow: 0 16px 48px rgba(139, 69, 255, 0.4);
}

.stat-number {
  font-size: 3rem;
  color: #8b45ff;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #c0c0ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.about-cta {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 69, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
}

.about-cta p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #c0c0ff;
  margin-bottom: 40px;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #8b45ff 0%, #a855f7 100%);
  color: #ffffff;
  padding: 20px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 32px rgba(139, 69, 255, 0.5);
  position: relative;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(139, 69, 255, 0.7);
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-tab {
    width: 100%;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .tab-content {
    padding: 60px 0;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .executors-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 32px;
  }
  
  .previews, .features, .trust {
    padding: 80px 0;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-form {
    padding: 24px;
  }

  .crypto-options {
    flex-direction: column;
  }

  .crypto-btn {
    width: 100%;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-summary-sidebar {
    position: relative;
    top: 0;
  }

  .progress-steps {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .step-line {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 32px 24px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}