/* ========== CSS VARIABLES ========== */
:root {
  --navy-deep: #0b0b1a;
  --purple-electric: #8a2be2;
  --cyan-neon: #00f5ff;
  --violet-dark: #1a0a2e;
  --violet-medium: #2d1b4e;
  --text-primary: #e0d6ff;
  --text-secondary: #b8a7ff;
  --glow-purple: 0 0 20px rgba(138, 43, 226, 0.6), 0 0 40px rgba(138, 43, 226, 0.4);
  --glow-cyan: 0 0 15px rgba(0, 245, 255, 0.5), 0 0 30px rgba(0, 245, 255, 0.3);
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  background-color: var(--navy-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ========== COSMIC BACKGROUND ========== */
.cosmic-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* Nebula Gradients */
.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: nebulaFloat 20s infinite ease-in-out;
}

.nebula-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple-electric) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.nebula-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan-neon) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

@keyframes nebulaFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* Stars Layer */
.stars-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 60px 70px, rgba(138, 43, 226, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 245, 255, 0.7), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(138, 43, 226, 0.5), transparent),
    radial-gradient(1px 1px at 200px 90px, rgba(0, 245, 255, 0.6), transparent),
    radial-gradient(2px 2px at 240px 50px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 280px 100px, rgba(138, 43, 226, 0.5), transparent);
  background-repeat: repeat;
  background-size: 300px 200px;
  animation: twinkle 8s infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Particles Canvas */
#particles-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
  animation: orbFloat 15s infinite ease-in-out;
}

.orb-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  animation-delay: 5s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 1;
  }
}

/* ========== NAVIGATION ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 26, 0.7);
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-purple);
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.8));
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(138, 43, 226, 0.1);
}

.nav-link.active {
  color: var(--cyan-neon);
  box-shadow: var(--glow-cyan);
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}

/* ========== HERO SECTION ========== */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.sosal-headline {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-purple);
  transform: rotate(-2deg);
  margin-bottom: 20px;
  animation: headlineGlow 3s ease-in-out infinite alternate;
  letter-spacing: 4px;
}

@keyframes headlineGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8)) drop-shadow(0 0 50px rgba(0, 245, 255, 0.5));
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 1px;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: rgba(26, 10, 46, 0.5);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 150px;
}

.badge:hover {
  transform: translateY(-5px);
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
}

.badge-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.6));
}

.badge span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin: 80px 0;
  padding: 0 20px;
}

.product-card {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(45, 27, 78, 0.6));
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(138, 43, 226, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
}

.product-card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .card-glow {
  opacity: 1;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.product-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 12px;
  padding: 10px;
  transition: all 0.3s ease;
}

.product-card:hover .product-logo {
  background: rgba(138, 43, 226, 0.4);
  box-shadow: var(--glow-purple);
}

.product-logo svg {
  width: 100%;
  height: 100%;
  color: var(--text-primary);
}

.telegram-logo svg {
  color: #0088cc;
}

.discord-logo svg {
  color: #5865f2;
}

.product-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 5px;
}

.star {
  color: var(--cyan-neon);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
  animation: starTwinkle 2s infinite;
}

.star:nth-child(2) {
  animation-delay: 0.2s;
}

.star:nth-child(3) {
  animation-delay: 0.4s;
}

.star:nth-child(4) {
  animation-delay: 0.6s;
}

.star:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.product-description {
  margin-bottom: 25px;
}

.product-description p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 30px;
}

.price-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ========== BUTTONS ========== */
.btn-buy {
  display: block;
  width: 100%;
  padding: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-electric), var(--violet-medium));
  color: var(--text-primary);
  border: 2px solid var(--purple-electric);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
}

.btn-buy::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;
}

.btn-buy:hover::before {
  left: 100%;
}

.btn-buy:hover {
  box-shadow: var(--glow-purple);
  transform: scale(1.02);
}

.pulse-btn {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8), 0 0 50px rgba(138, 43, 226, 0.4);
  }
}

/* ========== FOOTER ========== */
footer {
  margin-top: 100px;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  background: rgba(11, 11, 26, 0.5);
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  background: rgba(138, 43, 226, 0.4);
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .sosal-headline {
    transform: rotate(-1deg);
    letter-spacing: 2px;
  }

  .trust-badges {
    gap: 20px;
    margin: 40px 0;
  }

  .badge {
    min-width: 120px;
    padding: 15px 20px;
  }

  .products-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }

  .product-card {
    padding: 30px 20px;
  }

  .product-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .social-links {
    gap: 20px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* ========== AUTH FORMS ========== */
.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-form-container {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(45, 27, 78, 0.7));
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-purple);
}

.form-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input {
  padding: 14px;
  background: rgba(11, 11, 26, 0.6);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
  background: rgba(11, 11, 26, 0.8);
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.error-message {
  color: #ff4d7a;
  font-size: 0.85rem;
  min-height: 20px;
}

.form-options {
  display: flex;
  justify-content: flex-end;
}

.forgot-link {
  color: var(--cyan-neon);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  text-shadow: var(--glow-cyan);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-electric), var(--violet-medium));
  color: var(--text-primary);
  border: 2px solid var(--purple-electric);
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  box-shadow: var(--glow-purple);
  transform: scale(1.02);
}

.form-footer {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 20px;
  font-size: 0.95rem;
}

.link-accent {
  color: var(--cyan-neon);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-accent:hover {
  text-shadow: var(--glow-cyan);
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 8px;
}

.strength-bar {
  width: 100%;
  height: 4px;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4d7a, #ffa500, #4ade80);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========== ABOUT PAGE ========== */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bio-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.avatar-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-electric) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0.6;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.avatar-shape {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.avatar-shape svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.6));
}

.bio-content {
  text-align: center;
}

.bio-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 600px;
}

.contact-section {
  text-align: center;
  margin-top: 60px;
}

.contact-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link svg {
  width: 24px;
  height: 24px;
}

.contact-link:hover {
  background: rgba(138, 43, 226, 0.4);
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}

.discord-contact:hover {
  border-color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.telegram-contact:hover {
  border-color: #0088cc;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.6);
}

/* ========== CHECKOUT PAGE ========== */
.checkout-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--cyan-neon);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.back-link:hover {
  text-shadow: var(--glow-cyan);
  transform: translateX(-5px);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.checkout-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.checkout-summary,
.checkout-payment {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(45, 27, 78, 0.7));
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.summary-card {
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.summary-logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 10px;
}

.summary-logo svg {
  width: 100%;
  height: 100%;
}

.summary-product h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.summary-product p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.summary-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-badges-checkout {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-badge-checkout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.badge-icon-small {
  font-size: 1.2rem;
}

.payment-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-method-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  background: rgba(11, 11, 26, 0.6);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-method-btn:hover {
  border-color: var(--purple-electric);
  background: rgba(138, 43, 226, 0.2);
}

.payment-method-btn.active {
  border-color: var(--purple-electric);
  background: rgba(138, 43, 226, 0.3);
  box-shadow: var(--glow-purple);
}

.payment-form {
  display: none;
}

.payment-form.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.payment-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.paypal-placeholder,
.crypto-placeholder {
  padding: 20px;
  text-align: center;
  color: var(--text-secondary);
}

.crypto-select {
  width: 100%;
  padding: 12px;
  background: rgba(11, 11, 26, 0.6);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  margin: 15px 0;
}

.crypto-address {
  margin-top: 20px;
  padding: 15px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.crypto-code {
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--cyan-neon);
  word-break: break-all;
  margin: 10px 0;
}

.btn-copy {
  padding: 8px 16px;
  background: rgba(138, 43, 226, 0.3);
  border: 1px solid var(--purple-electric);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: rgba(138, 43, 226, 0.5);
  box-shadow: var(--glow-purple);
}

/* ========== SOSAL WATERMARK ========== */
.sosal-watermark {
  opacity: 0.3;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.sosal-watermark:hover {
  opacity: 0.6;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* ========== RESPONSIVE FORMS & CHECKOUT ========== */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    flex-direction: column;
  }

  .payment-method-btn {
    min-width: auto;
  }

  .bio-container {
    gap: 30px;
  }

  .avatar-container {
    width: 150px;
    height: 150px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sosal-headline {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .product-title h2 {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .btn-buy {
    padding: 15px;
    font-size: 1rem;
  }
}

/* ========== DASHBOARD STYLES ========== */
.dashboard-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.dashboard-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dashboard-card {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(45, 27, 78, 0.7));
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.subscriptions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscription-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  transition: all 0.3s ease;
}

.subscription-item:hover {
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
}

.subscription-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subscription-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
}

.subscription-icon svg {
  width: 100%;
  height: 100%;
}

.subscription-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.subscription-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.subscription-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.subscription-status.active {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.subscription-status.active span {
  color: #4ade80;
  font-size: 1.2rem;
}

.no-subscriptions {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
}

.referral-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.referral-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  min-width: 120px;
}

.stat-value {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-electric), var(--cyan-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.referral-code-box {
  padding: 25px;
  background: rgba(11, 11, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.referral-code-box label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.code-display {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.code-display code {
  flex: 1;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--cyan-neon);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.referral-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px;
  background: rgba(138, 43, 226, 0.2);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-btn span:first-child {
  font-size: 2rem;
}

.action-btn:hover {
  background: rgba(138, 43, 226, 0.4);
  border-color: var(--purple-electric);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}
