:root {
  --bg-color: #000000;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Escala de border-radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;

  /* Escala tipográfica */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 0.95rem;
  --text-md: 1.05rem;
  --text-lg: 1.2rem;
  --text-xl: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

body {
  background: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#galaxy-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #050505 0%, #000000 100%);
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.8;
  }
}

.saturn-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  perspective: 1200px;
  transform-style: preserve-3d;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.65;
  contain: strict;
}

#vyrox-preloader.fade-out {
  pointer-events: none;
}
#vyrox-preloader[hidden] {
  display: none !important;
}

.saturn-planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: #050505;
  border-radius: 50%;
  box-shadow:
    inset -40px -40px 80px rgba(255, 255, 255, 0.15),
    inset 10px 10px 30px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%) translateZ(1px);
}

.saturn-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border-style: solid;
  transform: translate(-50%, -50%) rotateX(75deg) rotateY(-15deg);
  animation: spin-ring var(--spin-duration) linear infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes spin-ring {
  from {
    transform: translate(-50%, -50%) rotateX(75deg) rotateY(-15deg)
      rotateZ(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(75deg) rotateY(-15deg)
      rotateZ(360deg);
  }
}

@keyframes shoot {
  0% {
    transform: translateX(0) translateY(0) rotate(-45deg);
    opacity: 1;
  }

  100% {
    transform: translateX(-1000px) translateY(1000px) rotate(-45deg);
    opacity: 0;
  }
}

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: auto;
  padding: 12px 50px 0;
  display: flex;
  justify-content: center;
}

nav {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 10px 20px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-planet {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #ffffff, #c0c0c0);
  border-radius: 50%;
  box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), 0 0 12px rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
}

.nav-logo-ring {
  position: absolute;
  width: 32px;
  height: 9px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  transform: rotate(-25deg);
  box-shadow: 0 0 8px rgba(255,255,255,0.15);
  z-index: 1;
}

.nav-logo-text {
  background: linear-gradient(135deg, #ffffff 60%, #aaaaaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link i {
  width: 15px;
  height: 15px;
  stroke-width: 2px;
}

.login-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  margin-left: 8px;
}

.login-btn:hover {
  background: #ffffff;
  color: #0a0a0f;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.user-nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link-user {
  color: #888;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.nav-link-user:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-avatar-wrapper {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #ffffff, #888888);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-avatar-wrapper:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.nav-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a1a;
  border: 2px solid #0a0a0f;
}

.user-display-name {
  display: none;
}

.nav-logout-btn {
  background: rgba(255, 62, 62, 0.08);
  border: 1px solid rgba(255, 62, 62, 0.15);
  color: #ff5252;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-logout-btn:hover {
  background: rgba(255, 62, 62, 0.18);
  border-color: rgba(255, 62, 62, 0.3);
  color: #ffffff;
}

.nav-logout-btn i {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 10px 16px 0;
  }

  nav {
    padding: 8px 14px;
    border-radius: 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 8px;
    gap: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .login-btn span {
    display: none;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: modal-fade-in 0.3s ease-out;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.close-modal {
  background: none;
  border: none;
  color: #666;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: white;
  transform: rotate(90deg);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-info h4 {
  margin: 0;
  font-size: 1rem;
  color: white;
}

.order-info span {
  font-size: 0.8rem;
  color: #666;
}

.order-status {
  text-align: right;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-badge.pendiente {
  background: rgba(255, 136, 0, 0.1);
  color: #ff8800;
  border: 1px solid rgba(255, 136, 0, 0.3);
}

.order-price {
  display: block;
  font-weight: 800;
  margin-top: 5px;
  color: white;
}

.status-badge.completado {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.order-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.order-action-btn i {
  width: 16px;
  height: 16px;
}

.order-action-btn.delete {
  background: rgba(255, 62, 62, 0.1);
  color: #ff3e3e;
  border-color: rgba(255, 62, 62, 0.2);
}

.order-action-btn.delete:hover {
  background: #ff3e3e;
  color: white;
}

.order-action-btn.pay {
  background: white;
  color: black;
}

.order-action-btn.pay:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.payment-summary {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.method-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.method-option.active {
  background: rgba(0, 255, 136, 0.05);
  border-color: #00ff88;
}

.method-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.method-text strong {
  display: block;
  font-size: 0.9rem;
  color: white;
}

.method-text span {
  font-size: 0.7rem;
  color: #666;
}

.pay-final-btn {
  width: 100%;
  padding: 16px;
  background: #ff3e3e;
  
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.pay-final-btn:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 62, 62, 0.3);
}

.pay-final-btn:disabled {
  background: #333;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.payment-card {
  background: rgba(10, 12, 16, 0.6);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.04),
    0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
}

.payment-card > * {
  position: relative;
  z-index: 1;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.payment-summary-row:last-of-type {
  border-bottom: none;
}

.payment-summary-label {
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-summary-value {
  color: #ddd;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.payment-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 8px 0;
  margin-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.payment-total-label {
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.payment-total-value {
  color: #00ff88;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
}

.payment-coupon-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.payment-coupon-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: white;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  transition: all 0.3s;
}

.payment-coupon-input:focus {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.08);
}

.payment-coupon-btn {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 700;
  border-radius: 10px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

.payment-coupon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.paypal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.paypal-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  flex-shrink: 0;
}

.paypal-header span {
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.paypal-container-wide {
  margin-top: 20px;
  min-height: 54px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.paypal-container-wide:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.paypal-container-wide .paypal-buttons {
  min-width: 100% !important;
}

.paypal-container-wide iframe {
  min-width: 100% !important;
  border-radius: 10px !important;
}

#paypal-button-container {
  min-height: 48px;
}

.toast-container {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.premium-toast {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: toast-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes toast-in {
  from {
    transform: translateX(100%) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.premium-toast.exit {
  animation: toast-out 0.5s forwards;
}

@keyframes toast-out {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.toast-content h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.toast-content p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #a0a0a0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 0 10%;
  gap: 4rem;
  padding-top: 100px;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.hero-content {
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
}

.hero-logo-side {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px white;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.status-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.main-logo-animated {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  animation:
    float 4s ease-in-out infinite,
    glow 3s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }

  to {
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.6));
  }
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: white;
  color: black;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}

.section-header-large {
  text-align: center;
  padding: 8rem 10% 2rem 10%;
  content-visibility: auto;
  contain-intrinsic-size: 200px;
}

.section-header-large h2 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.section-header-large p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-section {
  padding: 10rem 10%;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 8rem;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.feature-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-image {
  width: 100%;
  max-width: 550px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

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

.badge-top {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #fff;
}

.feature-content h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.feature-content p.desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.feature-item {
  display: flex;
  gap: 25px;
  align-items: center;
}

.feature-icon-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.feature-icon-box i,
.feature-icon-box svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
  background: white;
  border-color: white;
}

.feature-item:hover .feature-icon-box i,
.feature-item:hover .feature-icon-box svg {
  color: black !important;
  stroke: black !important;
}

.feature-item-text h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

.info-section {
  padding: 8rem 10%;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.info-card i {
  color: white;
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  display: inline-block;
  stroke-width: 2px;
}

.info-card h3 {
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.products-section {
  padding: 5rem 10%;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cat-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.cat-btn.active {
  background: white;
  color: black;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.product-content {
  padding: 1.5rem;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: black;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

.buy-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background: white;
  color: black;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.buy-btn:hover {
  background: #ccc;
}

.reviews-section {
  padding: 10rem 10% 5rem 10%;
  margin-top: 6rem;
  background: rgba(255, 255, 255, 0.02);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0 10%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 60px 0 50px 0;
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 0 6%;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn i {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background: #fff;
  border-color: transparent;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.15);
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 18px 0;
}

.footer-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-list li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-col-list li a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-bottom: 30px;
}

.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07), transparent);
  margin-bottom: 22px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #555;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.footer-badge:hover {
  color: #aaa;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-badge i {
  width: 12px;
  height: 12px;
}

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

.fomo-inline-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fomo-inline-card:hover {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.flash-sale-card {
  width: 340px;
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.flash-sale-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.flash-sale-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0 0 6px 0;
  background: linear-gradient(135deg, #ffffff, #aaaaaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}
.flash-sale-code-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}
.flash-sale-code-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.flash-sale-timer-unit {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 8px;
  min-width: 35px;
  text-align: center;
  font-weight: 800;
  color: #fff;
  font-family: monospace;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: none;
  }

  nav {
    padding: 1rem 5%;
  }
}

.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal-left {
  transform: translateX(-50px);
  opacity: 0;
}

.reveal-right {
  transform: translateX(50px);
  opacity: 0;
}

.reveal-zoom {
  transform: scale(0.9);
  opacity: 0;
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-zoom.active {
  transform: scale(1);
  opacity: 1;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}
.faq-question:hover {
  color: #ffffff !important;
}

.fomo-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.fomo-toast {
  pointer-events: auto;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 320px;
  position: relative;
  overflow: hidden;
  animation: fomo-in 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fomo-in {
  from {
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.fomo-toast.exit {
  animation: fomo-out 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fomo-out {
  to {
    transform: translateX(-120%) scale(0.9);
    opacity: 0;
  }
}

.fomo-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.fomo-details {
  flex: 1;
  min-width: 0;
}

.fomo-details h5 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
}

.fomo-details p {
  margin: 2px 0 0 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fomo-time {
  font-size: 0.68rem;
  color: #666;
  font-weight: 600;
}

.fomo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff);
  width: 100%;
  animation: fomo-progress-bar 6s linear forwards;
}

@keyframes fomo-progress-bar {
  from { width: 100%; }
  to { width: 0%; }
}

.action-btn {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 10px;
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  outline: none;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.action-btn.red {
  background: rgba(255, 62, 62, 0.08);
  border-color: rgba(255, 62, 62, 0.25);
  color: #ff5252;
}

.action-btn.red:hover {
  background: rgba(255, 62, 62, 0.18) !important;
  border-color: rgba(255, 62, 62, 0.5) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(255, 62, 62, 0.25);
}

.ticket-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  min-height: 720px;
  background: rgba(10, 12, 16, 0.45);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.6), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticket-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.25);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1;
  padding-right: 6px;
}

.ticket-list::-webkit-scrollbar {
  width: 6px;
}
.ticket-list::-webkit-scrollbar-track {
  background: transparent;
}
.ticket-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.ticket-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ticket-item-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.ticket-item-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: transparent;
  transition: all 0.3s;
}

.ticket-item-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ticket-item-card.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ticket-item-card.active::before {
  background: #00ff88;
}

.ticket-item-card.active.respondido::before {
  background: #00a2ff;
}

.ticket-item-card.active.cerrado::before {
  background: #ff3e3e;
}

.ticket-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-cat-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.ticket-status-pill {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticket-status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.ticket-status-pill.abierto {
  background: rgba(0, 255, 136, 0.08);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.15);
}
.ticket-status-pill.abierto::before {
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.ticket-status-pill.respondido {
  background: rgba(0, 162, 255, 0.08);
  color: #00a2ff;
  border: 1px solid rgba(0, 162, 255, 0.15);
}
.ticket-status-pill.respondido::before {
  background: #00a2ff;
  box-shadow: 0 0 8px #00a2ff;
}

.ticket-status-pill.cerrado {
  background: rgba(255, 62, 62, 0.08);
  color: #ff3e3e;
  border: 1px solid rgba(255, 62, 62, 0.15);
}
.ticket-status-pill.cerrado::before {
  background: #ff3e3e;
  box-shadow: 0 0 8px #ff3e3e;
}

.ticket-item-id {
  font-size: 0.72rem;
  color: #888;
  font-family: monospace;
}

.ticket-chat-area {
  display: flex;
  flex-direction: column;
  height: 720px;
  background: rgba(10, 10, 15, 0.15);
  position: relative;
}

.ticket-chat-header {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.ticket-chat-messages {
  flex: 1;
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-bubble-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 65%;
  gap: 6px;
  animation: messageSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.chat-bubble-wrapper.user {
  align-self: flex-end;
}

.chat-bubble-wrapper.admin {
  align-self: flex-start;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-word;
}

.chat-bubble img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.chat-bubble-wrapper.user .chat-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-right-radius: 4px;
}

.chat-bubble-wrapper.admin .chat-bubble {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chat-bubble-wrapper.current-user .chat-bubble {
  background: linear-gradient(135deg, rgba(0, 162, 255, 0.15), rgba(0, 162, 255, 0.05));
  border-color: rgba(0, 162, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 162, 255, 0.1);
}

.chat-bubble-time {
  font-size: 0.65rem;
  color: #666;
  text-align: right;
  margin-top: 2px;
}

.chat-bubble-wrapper.admin .chat-bubble-time {
  text-align: left;
}

.ticket-chat-input-area {
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
}

.ticket-chat-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.ticket-chat-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
}

.ticket-chat-send-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: white;
  border: none;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticket-chat-send-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.25);
  background: #f0f0f0;
}

.ticket-chat-send-btn:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.ticket-chat-attach-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticket-chat-attach-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
}

.ticket-new-btn {
  background: white;
  color: black;
  font-weight: 800;
  border-radius: 14px;
  padding: 12px 18px;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticket-new-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.ticket-chat-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

body.locked {
  overflow: hidden !important;
}

#vyrox-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease;
  clip-path: inset(0);
}

#vyrox-preloader.fade-out {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}

#preloader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.preloader-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.6) translateY(30px);
  animation: preloader-logo-intro 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes preloader-logo-intro {
  0% { opacity: 0; transform: scale(0.6) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.preloader-saturn {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-planet {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  border-radius: 50%;
  box-shadow: inset -8px -8px 16px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.5);
  z-index: 2;
  animation: planet-breath 3s ease-in-out infinite;
}

@keyframes planet-breath {
  0%, 100% { box-shadow: inset -8px -8px 16px rgba(0,0,0,0.4), 0 0 25px rgba(255,255,255,0.3); }
  50% { box-shadow: inset -8px -8px 16px rgba(0,0,0,0.4), 0 0 50px rgba(255,255,255,0.7); }
}

.preloader-ring {
  position: absolute;
  width: 100px;
  height: 28px;
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  transform: rotate(-25deg);
  box-shadow: 0 0 20px rgba(255,255,255,0.3), inset 0 0 10px rgba(255,255,255,0.15);
  z-index: 1;
  animation: ring-spin 8s linear infinite;
}

.preloader-ring-inner {
  position: absolute;
  width: 80px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: rotate(-25deg);
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  z-index: 1;
  animation: ring-spin 6s linear infinite reverse;
}

@keyframes ring-spin {
  from { transform: rotate(-25deg) rotateZ(0deg); }
  to { transform: rotate(-25deg) rotateZ(360deg); }
}

.preloader-brand {
  display: flex;
  gap: 4px;
  opacity: 0;
  animation: preloader-brand-fade 0.8s ease forwards 0.6s;
}

@keyframes preloader-brand-fade {
  to { opacity: 1; }
}

.preloader-brand-letter {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255,255,255,0.3);
  display: inline-block;
  animation: letter-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(0.8s + var(--i) * 0.1s);
}

@keyframes letter-pop {
  0% { opacity: 0; transform: translateY(30px) rotateX(90deg); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}

.preloader-bar-container {
  width: 260px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  animation: preloader-intro 0.6s ease forwards 1.4s;
}

@keyframes preloader-intro {
  to { opacity: 1; }
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, #ffffff, #ffffff, transparent);
  border-radius: 5px;
  animation: load-bar 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards 1.5s;
  box-shadow: 0 0 15px #ffffff, 0 0 30px rgba(255,255,255,0.3);
}

@keyframes load-bar {
  0% { width: 0%; transform: translateX(-100%); }
  40% { width: 60%; transform: translateX(0%); }
  70% { width: 75%; transform: translateX(60%); }
  100% { width: 100%; transform: translateX(100%); }
}

.preloader-loading-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: preloader-intro 0.6s ease forwards 1.6s, text-pulse 2s ease-in-out infinite 2.2s;
}

@keyframes text-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.2; }
}

.preloader-glow-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

@media (max-width: 900px) {
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .stats-banner {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.6s ease;
}

.stat-box:hover .stat-glow {
  transform: scale(1.2);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon-wrapper {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.tier-card {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.tier-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.4s;
}

.gold-tier .tier-glow { background: #ffaa00; }
.platinum-tier .tier-glow { background: #a855f7; }
.diamond-tier .tier-glow { background: #00ffff; }

.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.gold-tier:hover { border-color: rgba(255, 170, 0, 0.3); }
.platinum-tier:hover { border-color: rgba(168, 85, 247, 0.3); }
.diamond-tier:hover { border-color: rgba(0, 255, 255, 0.3); }

.tier-card:hover .tier-glow {
  opacity: 0.3;
}

.tier-header {
  margin-bottom: 24px;
}

.tier-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gold-tier .tier-icon { color: #ffaa00; background: rgba(255, 170, 0, 0.05); border-color: rgba(255, 170, 0, 0.15); }
.platinum-tier .tier-icon { color: #a855f7; background: rgba(168, 85, 247, 0.05); border-color: rgba(168, 85, 247, 0.15); }
.diamond-tier .tier-icon { color: #00ffff; background: rgba(0, 255, 255, 0.05); border-color: rgba(0, 255, 255, 0.15); }

.tier-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.tier-condition {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.tier-benefit {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  margin-bottom: 30px;
}

.benefit-percentage {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.gold-tier .benefit-percentage { color: #ffaa00; text-shadow: 0 0 15px rgba(255, 170, 0, 0.2); }
.platinum-tier .benefit-percentage { color: #a855f7; text-shadow: 0 0 15px rgba(168, 85, 247, 0.2); }
.diamond-tier .benefit-percentage { color: #00ffff; text-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }

.benefit-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #ccc;
}

.tier-perks li i {
  width: 16px;
  height: 16px;
  color: #00ff88;
  flex-shrink: 0;
}

.discord-banner-card {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.02) 100%);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 28px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

@media (max-width: 900px) {
  .discord-banner-card {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }
}

.discord-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(88, 101, 242, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.discord-content-left {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #5865f2;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.discord-content-left h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.discord-content-left p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.discord-stats {
  display: flex;
  gap: 30px;
}

@media (max-width: 900px) {
  .discord-stats {
    justify-content: center;
  }
}

.d-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.stat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stat-status-dot.online {
  background: #23a55a;
  box-shadow: 0 0 10px #23a55a;
}

.stat-status-dot.offline {
  background: rgba(255, 255, 255, 0.2);
}

.d-stat strong {
  color: #fff;
  font-weight: 800;
}

.d-stat span {
  color: var(--text-secondary);
}

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

.discord-btn {
  background: #5865f2;
  color: #fff;
  padding: 16px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

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

.discord-btn i {
  width: 18px;
  height: 18px;
}

.sidebar-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.sidebar-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.sidebar-overlay {
  display: none;
}

@media (max-width: 900px) {
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .admin-sidebar, .client-sidebar {
    position: fixed !important;
    top: 0;
    left: -320px !important;
    width: 280px !important;
    height: 100vh !important;
    z-index: 1050;
    box-shadow: none;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 20px 20px 0;
  }

  .admin-sidebar.mobile-open, .client-sidebar.mobile-open {
    left: 0 !important;
    box-shadow: 0 0 50px rgba(0,0,0,0.6) !important;
  }

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

  .admin-main-view, .client-main-view {
    padding: 56px 16px 20px !important;
  }

  .admin-main-view .dash-wrapper,
  .client-main-view .dash-wrapper {
    padding: 0 !important;
  }

  
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .admin-panel-card {
    padding: 20px 16px !important;
  }

  
  .order-row {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    align-items: stretch !important;
  }

  .order-row .order-info {
    flex-direction: column !important;
    gap: 6px !important;
  }

  .order-row .order-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  
  .panel-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .panel-header input[type="text"],
  .panel-header input[type="search"] {
    width: 100% !important;
  }

  
  .dash-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .dash-tab {
    font-size: 0.75rem;
    padding: 8px 14px;
  }
}

@media (max-width: 600px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .admin-sidebar, .client-sidebar {
    width: 100% !important;
    max-width: 300px;
  }

  .admin-main-view, .client-main-view {
    padding: 56px 12px 16px !important;
  }

  .admin-panel-card {
    padding: 16px 12px !important;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {
  .ticket-container {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 20px;
  }

  .ticket-sidebar {
    display: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px;
  }

  .ticket-sidebar.mobile-show {
    display: flex;
  }

  .ticket-chat-area {
    height: 560px;
  }

  .ticket-chat-messages {
    padding: 16px;
  }

  .ticket-chat-header {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ticket-item-card {
    padding: 14px;
  }

  
  .ticket-list-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .ticket-list-toggle {
    display: none !important;
  }
}

.nav-link-user-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 8px 12px 0;
  }

  nav {
    padding: 8px 12px;
    gap: 8px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-logo-planet {
    width: 14px;
    height: 14px;
  }

  .nav-logo-ring {
    width: 26px;
    height: 7px;
  }

  .login-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .nav-links.mobile-open {
    padding: 6px;
    gap: 2px;
    top: calc(100% + 6px);
  }

  .nav-links.mobile-open .nav-link {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .nav-links.mobile-open .nav-link-user-mobile {
    display: flex !important;
    font-size: 0.85rem;
    padding: 10px 14px;
    color: #888;
    text-decoration: none;
    font-weight: 600;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    transition: all 0.25s ease;
  }

  .nav-links.mobile-open .nav-link-user-mobile:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .user-nav-group {
    gap: 4px;
  }

  .nav-link-user {
    display: none;
  }

  .nav-avatar-wrapper {
    width: 28px;
    height: 28px;
  }

  .nav-logout-btn {
    padding: 6px;
  }

  .nav-logout-btn i {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 400px) {
  nav {
    gap: 4px;
    padding: 6px 10px;
  }

  .nav-logo-text {
    font-size: 0.95rem;
  }

  .nav-logo {
    gap: 6px;
  }

  .nav-logo-icon {
    width: 24px;
    height: 24px;
  }

  .nav-logo-planet {
    width: 11px;
    height: 11px;
  }

  .nav-logo-ring {
    width: 22px;
    height: 6px;
  }

  .login-btn {
    padding: 6px 8px;
  }

  .user-nav-group {
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 100px 16px 40px !important;
    min-height: auto !important;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
    margin-bottom: 1.2rem !important;
  }

  .hero p {
    font-size: 1.05rem !important;
    margin-bottom: 2rem !important;
    max-width: 100% !important;
  }

  .cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem auto;
  }

  .cta-group a {
    width: 100% !important;
    justify-content: center;
    padding: 1rem 2rem !important;
  }

  .hero-logo-side {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .main-logo-animated {
    max-width: 100% !important;
  }

  .saturn-planet {
    width: 220px !important;
    height: 220px !important;
  }

  
  .section-header-large {
    padding: 4rem 16px 2rem 16px !important;
  }

  .section-header-large h2 {
    font-size: 2.2rem !important;
    letter-spacing: -1px !important;
  }

  .section-header-large p {
    font-size: 1rem !important;
  }

  
  .feature-section {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding: 4rem 16px !important;
    margin-top: 2rem !important;
  }

  .feature-content h2 {
    font-size: 2.2rem !important;
    text-align: center;
    line-height: 1.2 !important;
  }

  .feature-content p.desc {
    text-align: center;
    margin-bottom: 2.5rem !important;
    font-size: 1rem !important;
  }

  .feature-list {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .feature-item {
    gap: 16px !important;
  }

  .feature-icon-box {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
  }

  .feature-icon-box i,
  .feature-icon-box svg {
    width: 22px !important;
    height: 22px !important;
  }

  .feature-item-text h4 {
    font-size: 1.1rem !important;
  }

  .feature-item-text p {
    font-size: 0.88rem !important;
  }

  .feature-image-container {
    max-width: 280px;
    margin: 0 auto;
  }

  
  .info-section {
    padding: 3rem 16px !important;
    margin-bottom: 2rem !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .info-card {
    padding: 1.5rem !important;
  }

  .info-card i {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 1rem !important;
  }

  .info-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  
  .how-it-works-faq {
    margin: 3rem auto !important;
    padding: 0 16px !important;
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
    margin-bottom: 4rem !important;
  }

  .step-card {
    padding: 2rem 1.5rem !important;
  }

  
  .stats-banner {
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 3rem 16px !important;
    margin: 2rem auto !important;
  }

  .stat-box {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 16px;
  }

  .step-card {
    padding: 1.5rem !important;
  }

  .section-header h2 {
    font-size: 1.6rem !important;
  }

  .section-header p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 12px;
    padding: 0 12px;
  }

  .product-card {
    padding: 16px !important;
  }

  .product-card h3 {
    font-size: 0.85rem !important;
  }

  .product-card .product-content > p {
    height: auto !important;
    font-size: 0.75rem !important;
  }

  .product-price {
    font-size: 1.1rem !important;
  }

  .product-card .buy-btn {
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
  }

  .categories {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0 12px;
  }

  .cat-btn {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .products-section {
    padding: 20px 0 !important;
  }
}

@media (max-width: 768px) {
  .tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 16px;
  }

  .tier-card {
    padding: 24px 20px !important;
  }

  .tier-benefit {
    margin: 12px 0;
  }

  .benefit-percentage {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 16px;
  }

  .reviews-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  #flash-sale-widget-container {
    bottom: 15px !important;
    right: 12px !important;
    left: auto !important;
    max-width: 55vw !important;
  }

  #flash-sale-pill {
    max-width: 100% !important;
    justify-content: center;
    padding: 8px 12px !important;
    gap: 8px !important;
  }

  #flash-sale-pill span {
    font-size: 0.8rem !important;
  }

  #flash-sale-pill div:first-child {
    width: 26px !important;
    height: 26px !important;
  }

  .flash-sale-card {
    max-width: 100% !important;
    padding: 20px 16px !important;
  }

  .flash-sale-card h3 {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 768px) {
  #fomo-inline-container {
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    margin: 2rem 12px !important;
  }

  .fomo-inline-card {
    padding: 14px !important;
  }
}

@media (max-width: 768px) {
  #recent-purchases-section {
    padding: 0 12px !important;
    margin: 3rem auto 1.5rem !important;
  }

  .purchase-row {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 14px !important;
    align-items: stretch !important;
    text-align: center;
  }

  .purchase-user {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0 16px !important;
  }

  .faq-item {
    padding: 16px !important;
  }

  .faq-question {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 30px 20px !important;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .status-container {
    padding: 0 12px !important;
    margin: 80px auto 30px !important;
  }

  .status-header-card {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px !important;
  }

  .systems-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .terms-container {
    padding: 0 12px !important;
    margin: 80px auto 30px !important;
  }

  .terms-layout {
    grid-template-columns: 1fr !important;
  }

  .terms-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    position: static !important;
  }

  .terms-nav-btn {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .terms-header h1 {
    font-size: 1.6rem !important;
  }

  .terms-panel {
    padding: 20px 16px !important;
  }
}

@media (max-width: 480px) {
  #coupon-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  #coupon-row input {
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
    font-size: 0.8rem !important;
    padding: 10px 12px !important;
  }

  #coupon-row button {
    width: 100% !important;
    justify-content: center;
    padding: 10px 12px !important;
  }
}


/* ============================================================
   CLASES EXTRAÍDAS DE ESTILOS INLINE
   ============================================================ */

/* Flash sale widget */
.fs-widget-container {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.fs-pill {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(20px);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.25);
  max-width: 240px;
}

.fs-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.4);
}

.fs-pill-icon {
  background: #fff;
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}

.fs-pill-icon i {
  width: 16px;
  height: 16px;
  color: #111;
}

.fs-pill-title {
  font-weight: 800;
  font-size: var(--text-md);
  font-family: 'Outfit', sans-serif;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-pill-chevron {
  width: 16px;
  height: 16px;
  color: #aaa;
  flex-shrink: 0;
}

.fs-expanded-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
}

.fs-expanded-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.fs-expanded-close i {
  width: 14px;
  height: 14px;
}

.fs-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.fs-card-header-icon {
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.fs-card-header-icon i {
  color: #111;
  width: 18px;
  height: 18px;
}

.fs-card-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fs-card-badge i {
  width: 12px;
  height: 12px;
}

.fs-card-desc-title {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: var(--text-md);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.fs-card-desc {
  margin: 0 0 24px 0;
  color: #aaa;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.fs-code-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: var(--text-sm);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fs-code-label i {
  width: 12px;
  height: 12px;
}

.fs-code-section {
  margin-bottom: 24px;
}

.fs-code-text {
  color: white;
  font-weight: 900;
  font-size: var(--text-xl);
  letter-spacing: 3px;
  font-family: monospace;
}

.fs-code-copy-icon {
  background: rgba(255,255,255,0.05);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.fs-code-copy-icon i {
  width: 14px;
  height: 14px;
}

.fs-timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

.fs-timer-label {
  color: #888;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fs-timer-units {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fs-timer-sep {
  color: #555;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-right: 2px;
}

/* How it works section */
.how-it-works-faq {
  max-width: 1200px;
  margin: 8rem auto;
  padding: 0 2rem;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 7rem;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  user-select: none;
}

.step-icon {
  background: rgba(255,255,255,0.05);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  margin-bottom: 1.5rem;
}

.step-icon i {
  width: 24px;
  height: 24px;
}

.step-card h3 {
  color: white;
  margin: 0 0 10px 0;
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.step-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.6;
}

/* FAQ */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
  font-weight: 700;
  font-size: var(--text-md);
}

.faq-question i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0,0,0,0.2);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--text-base);
}

/* VIP tiers section */
.vip-tiers-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.vip-tiers-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Discord CTA section */
.discord-cta-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

/* Recent purchases section */
.recent-purchases-section {
  max-width: 1200px;
  margin: 5rem auto 2rem auto;
  padding: 0 2rem;
}

.recent-purchases-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.recent-purchases-header h2 i {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.fomo-inline-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  min-height: 100px;
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 120px 6% 60px;
    text-align: center;
  }

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

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    max-width: 100%;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-logo-side {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Info section — reducida a 5 columnas máx */
.info-section {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.info-card i {
  width: 48px;
  height: 48px;
}

/* Iconos de tamaño fijo */
.nav-icon-sm {
  width: 16px;
  height: 16px;
}

.nav-icon-lg {
  width: 22px;
  height: 22px;
}

.modal-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Icono en títulos de sección */
.section-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: white;
}

.flash-sale-expanded-panel {
  transform-origin: bottom right;
}


/* Menú de usuario en navbar */
#user-menu-btn:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

#user-menu-dropdown a:hover {
  background: rgba(255,255,255,0.08) !important;
}

/* Menú desplegable de usuario en navbar principal */
.nav-user-menu-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  height: 38px;
}

.nav-user-menu-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.nav-user-menu-btn .nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.nav-user-menu-btn .user-display-name {
  font-size: 0.85rem;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: -60px;
  width: 220px;
  background: rgba(10, 10, 15, 0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  overflow: hidden;
  padding: 6px;
  animation: fadeInDropdown 0.2s ease-out;
}

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

.nav-dropdown-item {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
}

.nav-dropdown-item i {
  flex-shrink: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}
