/* D-Scripts styles.css - extracted & cleaned */
html{scroll-behavior:smooth}
:focus-visible{outline:2px solid #f87171;outline-offset:2px}
.bg-hex:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.25;background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="140" viewBox="0 0 86.6 100"><path fill="none" stroke="%231f2937" stroke-width=".5" d="m43.3 2 .6 1 42 24v46l-42 24-42-24v-46z"/></svg>');background-size:120px}
@keyframes gradientShift{0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%}}
.text-gradient-anim{background:linear-gradient(90deg,#e11d48,#f43f5e,#6366f1);background-size:200% 200%;background-clip:text;-webkit-background-clip:text;color:transparent;animation:gradientShift 7s ease-in-out infinite}
@supports not (-webkit-background-clip:text){.text-gradient-anim{background:none;color:#f87171}}
.heading{position:relative;display:inline-block;perspective:800px;transform-style:preserve-3d}
.heading .original,.heading .alt{display:inline-block;transition:opacity .6s,transform .6s cubic-bezier(.4,0,.2,1);backface-visibility:hidden}
.heading .original{position:relative;z-index:2}
.heading .alt{position:absolute;inset:0;display:flex;justify-content:center;align-items:center;opacity:0;transform:rotateX(-90deg) translateY(-12px);z-index:1;pointer-events:none}
.heading:hover .alt,.heading:focus .alt{opacity:1;transform:rotateX(0) translateY(0);z-index:2}
.heading:hover .original,.heading:focus .original{opacity:0;transform:rotateX(90deg) translateY(12px);z-index:1}
@keyframes fadeIn{to{opacity:1;transform:none}}
.animate-fade-in{animation:fadeIn .7s forwards}

/* Custom media hover effects */
.hover-scale-media {
  transition: transform 0.3s ease;
  object-fit: cover;
  object-position: center;
}

.group:hover .hover-scale-media {
  transform: scale(1.01); /* Reduced from 1.02 to 1.01 for more subtle effect */
}

.script-card {
  overflow: hidden;
}

.script-card .media-slider,
.script-card .video-container,
.script-card .image-container {
  overflow: hidden;
  height: 192px; /* Фиксированная высота для всех устройств */
  max-height: 192px; /* 12rem = h-48 in Tailwind */
  width: 100%;
}

/* Ensure all media elements fit properly */
.script-card video,
.script-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
}

/* Additional styles for inner containers */
.script-card .image-container,
.script-card .video-container {
  position: relative;
  border-radius: 0.75rem;
  background: #3f3f46;
}

.script-card .image-status,
.script-card .video-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

/* Enhanced slider navigation */
.media-slider .slider-dot {
  transition: all 0.2s ease;
}

.media-slider .slider-dot:hover {
  transform: scale(1.2);
}

/* Card expansion system */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.card-description {
  overflow: hidden;
  opacity: 1;
}

.expand-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  margin-top: 0.5rem;
  border-radius: 0.375rem;
  background: rgba(96, 165, 250, 0.1);
  backdrop-filter: blur(4px);
}

.expand-toggle:hover {
  color: #93c5fd;
  background: rgba(96, 165, 250, 0.2);
  transform: translateY(-1px);
}

/* Fullscreen modal styles */
.card-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.card-modal {
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 1rem;
  max-width: 800px;
  max-height: 90vh;
  width: 100%;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 50;
}

.card-modal-overlay.active .card-modal {
  transform: scale(1) translateY(0);
}

.card-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #3f3f46;
}

.card-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  z-index: 60;
}

.card-modal-close:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

.card-modal-content {
  padding: 1.5rem;
}

/* Purchase Modal Styles */
.purchase-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.purchase-modal {
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 55;
}

.purchase-modal-overlay.active .purchase-modal {
  transform: scale(1) translateY(0);
}

.purchase-modal-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #3f3f46;
}

.purchase-modal-content {
  padding: 1.5rem;
}

.purchase-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.purchase-option:hover {
  background: #3f3f46;
  border-color: #52525b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.purchase-option-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.purchase-option-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.purchase-option-telegram {
  background: linear-gradient(135deg, #229ed9, #0088cc);
}

.purchase-option-fanpay {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.purchase-option-text h4 {
  font-weight: 600;
  color: #f4f4f5;
  margin-bottom: 0.25rem;
}

.purchase-option-text p {
  font-size: 0.875rem;
  color: #a1a1aa;
}

.purchase-option-arrow {
  color: #71717a;
  transition: transform 0.2s ease;
}

.purchase-option:hover .purchase-option-arrow {
  transform: translateX(4px);
}

.purchase-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #3f3f46;
  display: flex;
  justify-content: center;
}

.purchase-modal-cancel {
  background: none;
  border: 1px solid #52525b;
  color: #a1a1aa;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.purchase-modal-cancel:hover {
  background: #27272a;
  color: #f4f4f5;
}

/* Mobile optimization */
@media (max-width: 768px) {
  /* Regular script cards mobile optimization */
  .script-card .media-slider,
  .script-card .video-container,
  .script-card .image-container {
    height: 160px !important;
    max-height: 160px !important;
    min-height: 160px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  .script-card .media-slider video,
  .script-card .media-slider img,
  .script-card .media-slider .slide > div,
  .script-card video,
  .script-card img,
  .script-card .telegram-image,
  .script-card .telegram-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    max-width: 100% !important;
    max-height: 100% !important;
    position: relative !important;
    z-index: 1;
  }

  /* Ensure status divs are properly positioned */
  .script-card .image-status,
  .script-card .video-status {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
  }

  /* Modal cards mobile optimization */
  .card-modal-overlay {
    padding: 0.5rem !important;
  }

  .card-modal {
    margin: 0 !important;
    max-height: 95vh !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0.75rem !important;
  }

  .card-modal .media-slider,
  .card-modal .video-container,
  .card-modal .image-container {
    height: 50vh !important;
    max-height: 50vh !important;
    min-height: 40vh !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .card-modal .media-slider video,
  .card-modal .media-slider img,
  .card-modal video,
  .card-modal img,
  .card-modal .telegram-image,
  .card-modal .telegram-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  
  .card-modal .card-description {
    max-height: 30vh !important;
    overflow-y: auto !important;
    padding: 1rem !important;
  }
  
  .card-modal {
    margin: 5vh 2vw !important;
    padding: 1rem !important;
  }
  
  .card-modal-content {
    padding: 0.75rem !important;
  }
  
  .card-modal-header {
    padding: 0.75rem !important;
  }
  
  .card-modal-header h2 {
    font-size: 1.125rem !important;
  }

  /* Purchase modal mobile optimization */
  .purchase-modal-overlay {
    padding: 1rem !important;
  }

  .purchase-modal {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0.75rem !important;
  }

  .purchase-modal-header {
    padding: 1rem !important;
  }

  .purchase-modal-header h2 {
    font-size: 1.125rem !important;
  }

  .purchase-modal-content {
    padding: 1rem !important;
  }

  .purchase-option {
    padding: 0.875rem !important;
    margin-bottom: 0.5rem !important;
  }

  .purchase-option-icon {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 1rem !important;
  }

  .purchase-option-text h4 {
    font-size: 0.875rem !important;
  }

  .purchase-option-text p {
    font-size: 0.75rem !important;
  }

  .purchase-modal-footer {
    padding: 0.75rem 1rem !important;
  }

  /* Mobile slider functionality */
  .media-slider {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    width: 100% !important;
  }
  
  .media-slider .slide {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .media-slider .slide img,
  .media-slider .slide video,
  .media-slider .slide .telegram-image,
  .media-slider .slide .telegram-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    border: 2px solid rgba(239, 68, 68, 0.6) !important;
    color: rgba(239, 68, 68, 0.8) !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    z-index: 10;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }
  
  .slider-btn:hover {
    background: rgba(239, 68, 68, 0.9) !important;
    border-color: rgba(239, 68, 68, 0.8) !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1) !important;
  }
  
  .slider-btn.prev {
    left: 10px !important;
  }
  
  .slider-btn.next {
    right: 10px !important;
  }
  
  .slider-indicators {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 5px !important;
    z-index: 10;
  }
  
  .slider-indicator {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
  }
  
  .slider-indicator.active {
    background: white !important;
  }
}

/* iPhone and small mobile specific fixes */
@media (max-width: 480px) and (orientation: portrait) {
  .script-card .media-slider,
  .script-card .video-container,
  .script-card .image-container {
    height: 140px !important;
    max-height: 140px !important;
    min-height: 140px !important;
  }
  
  .card-modal {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0.5rem !important;
  }
  
  .card-modal .media-slider {
    height: auto !important;
    max-height: 50vh !important;
    min-height: 200px !important;
  }
  
  .card-modal-overlay {
    padding: 0.25rem !important;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .script-card .media-slider,
  .script-card .video-container,
  .script-card .image-container {
    height: 120px !important;
    max-height: 120px !important;
    min-height: 120px !important;
  }
  
  .card-modal .media-slider {
    min-height: 180px !important;
    max-height: 45vh !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .card-modal {
    max-height: 90vh !important;
  }
  
  .card-modal .media-slider {
    max-height: 50vh !important;
    min-height: 200px !important;
  }
}

/* Enhanced navigation buttons for modal */
.card-modal .slider-prev,
.card-modal .slider-next {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  border: 2px solid rgba(239, 68, 68, 0.6) !important;
  color: rgba(239, 68, 68, 0.8) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  z-index: 50;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
}

.card-modal .slider-prev:hover,
.card-modal .slider-next:hover {
  background: rgba(239, 68, 68, 0.9) !important;
  border-color: rgba(239, 68, 68, 0.8) !important;
  color: white !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.card-modal .slider-prev:disabled,
.card-modal .slider-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(156, 163, 175, 0.4);
  color: rgba(156, 163, 175, 0.6);
}

.card-modal .slider-prev:disabled:hover,
.card-modal .slider-next:disabled:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(156, 163, 175, 0.4);
  color: rgba(156, 163, 175, 0.6);
  transform: translateY(-50%);
}

/* Override Tailwind opacity-0 class specifically for modal */
.card-modal .media-slider .slider-prev.opacity-0,
.card-modal .media-slider .slider-next.opacity-0 {
  opacity: 1 !important;
}

/* Ensure navigation buttons are always visible in modal */
.card-modal .media-slider .slider-prev,
.card-modal .media-slider .slider-next {
  display: flex !important;
}

/* Video play button centering styles */
.play-video-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin: 0 auto !important;
  min-width: 140px !important;
}

.video-status .play-video-btn {
  margin-top: 0.75rem !important;
}

.video-overlay .play-video-btn {
  margin: 0 !important;
}

/* Center video status content */
.video-status > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Telegram formatting support */
.telegram-formatted {
  word-wrap: break-word;
  white-space: pre-wrap;
}

.telegram-formatted strong,
.telegram-formatted b {
  font-weight: 600;
  color: #f4f4f5;
}

.telegram-formatted em,
.telegram-formatted i {
  font-style: italic;
  color: #d4d4d8;
}

.telegram-formatted code {
  background: rgba(39, 39, 42, 0.8);
  color: #10b981;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.875em;
}

.telegram-formatted a {
  color: #60a5fa;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.3);
  transition: all 0.2s ease;
}

.telegram-formatted a:hover {
  color: #93c5fd;
  text-decoration-color: #93c5fd;
}

.telegram-formatted .emoji {
  font-size: 1.1em;
  display: inline-block;
  margin: 0 0.1em;
}

/* Reviews Slider Styles */
.reviews-slider {
  min-height: 400px;
  overflow: hidden; /* Hide overflow to prevent edge visibility */
  position: relative;
  width: 100%;
}

.reviews-track {
  min-height: 400px;
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.reviews-track .review-slide {
  flex-shrink: 0;
  width: 100%; /* Full width for each review */
  padding: 0 2rem; /* Add some padding for better appearance */
  box-sizing: border-box;
  margin: 0; /* Ensure no margins */
}

/* Remove responsive breakpoints - always full width */
@media (min-width: 768px) {
  .reviews-track .review-slide {
    width: 100%; /* Full width on all screens */
    padding: 0 3rem; /* Slightly more padding on larger screens */
  }
}

@media (min-width: 1024px) {
  .reviews-track .review-slide {
    width: 100%; /* Full width on all screens */
    padding: 0 4rem; /* More padding on desktop */
  }
}

@media (min-width: 1280px) {
  .reviews-track .review-slide {
    width: 100%; /* Full width on all screens */
    padding: 0 6rem; /* Maximum padding on large screens */
  }
}

/* Reviews navigation dots */
.reviews-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dot.active {
  background: #ef4444;
  border-color: rgba(239, 68, 68, 0.5);
  transform: scale(1.2);
}

.reviews-dot:hover:not(.active) {
  background: rgba(239, 68, 68, 0.6);
  transform: scale(1.1);
}

/* Container for navigation dots - add padding to prevent clipping */
#reviews-dots {
  padding: 8px 0; /* Add vertical padding to accommodate scaled dots */
  margin-top: 2rem; /* Increase top margin for better spacing */
}

/* Navigation buttons positioning - move outside content area and make always visible */
#reviews-prev,
#reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: rgba(239, 68, 68, 0.8);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1; /* Always visible */
  z-index: 20;
  cursor: pointer;
}

#reviews-prev:hover,
#reviews-next:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: rgba(239, 68, 68, 0.8);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

#reviews-prev:disabled,
#reviews-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(156, 163, 175, 0.4);
  color: rgba(156, 163, 175, 0.6);
}

#reviews-prev:disabled:hover,
#reviews-next:disabled:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(156, 163, 175, 0.4);
  color: rgba(156, 163, 175, 0.6);
  transform: translateY(-50%);
}

#reviews-prev {
  left: 1rem; /* Position inside container */
}

#reviews-next {
  right: 1rem; /* Position inside container */
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  .reviews-slider {
    touch-action: pan-x;
    overflow: hidden; /* Ensure no overflow on mobile */
  }
  
  .reviews-track .review-slide {
    width: 100%;
    padding: 0 1rem; /* Minimal padding on mobile */
  }
  
  /* Hide navigation arrows on mobile */
  #reviews-prev,
  #reviews-next {
    display: none;
  }
  
  .reviews-dot {
    width: 10px;
    height: 10px;
  }
  
  /* Mobile container padding for dots */
  #reviews-dots {
    padding: 6px 0; /* Slightly less padding on mobile */
    margin-top: 1.5rem; /* Less margin on mobile */
  }
}

body{font-family:'Inter',sans-serif}

/* Neon DLC text animation - 3 варианта */

/* Вариант 1: Классический неон (2px обводка) */
.neon-dlc {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 2px #ff4757;
  text-stroke: 2px #ff4757;
  text-shadow: 
    0 0 5px #ff4757,
    0 0 10px #ff475780,
    0 0 20px #ff475740;
  animation: neonFlicker 4s infinite alternate;
  transition: all 0.3s ease;
}

@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 
      0 0 5px #ff4757,
      0 0 10px #ff475780,
      0 0 20px #ff475740;
    opacity: 1;
  }
  
  20%, 24%, 55% {
    text-shadow: 
      0 0 2px #ff4757,
      0 0 5px #ff475760;
    opacity: 0.8;
  }
}

/* Более мягкий hover эффект */
.neon-dlc:hover {
  text-shadow: 
    0 0 8px #ff4757,
    0 0 15px #ff475790,
    0 0 25px #ff475750;
  transform: scale(1.02);
}

/* Вариант 2: Минимальный эффект с мерцанием (перепады напряжения) - Orbitron */
.neon-dlc-minimal {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 1.5px #ff4757;
  text-stroke: 1.5px #ff4757;
  text-shadow: 
    0 0 10px #ff475770,
    0 0 20px #ff475750,
    0 0 30px #ff475730;
  animation: neonFlicker 4s infinite;
}

@keyframes neonFlicker {
  0%, 2%, 8%, 12%, 20%, 25%, 30%, 70%, 72%, 78%, 82%, 85%, 92%, 100% {
    -webkit-text-stroke: 1.5px #ff4757;
    text-stroke: 1.5px #ff4757;
    text-shadow: 
      0 0 10px #ff475770,
      0 0 20px #ff475750,
      0 0 30px #ff475730;
    opacity: 1;
  }
  
  3%, 5%, 9%, 21%, 23%, 73%, 75%, 79%, 83%, 93% {
    -webkit-text-stroke: 1.5px #ff475740;
    text-stroke: 1.5px #ff475740;
    text-shadow: 
      0 0 3px #ff475740,
      0 0 8px #ff475730;
    opacity: 0.6;
  }
  
  4%, 22%, 74%, 84% {
    -webkit-text-stroke: 1.5px #ff475720;
    text-stroke: 1.5px #ff475720;
    text-shadow: 
      0 0 1px #ff475730;
    opacity: 0.3;
  }
  
  6%, 24%, 76% {
    -webkit-text-stroke: 1.5px transparent;
    text-stroke: 1.5px transparent;
    text-shadow: none;
    opacity: 0.1;
  }
}

/* Вариант 3: Реалистичный тонкий (1px обводка) */
.neon-dlc-thin {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 1px #ff4757;
  text-stroke: 1px #ff4757;
  text-shadow: 
    0 0 3px #ff4757,
    0 0 8px #ff475770,
    0 0 15px #ff475740;
  animation: neonSubtleFlicker 5s infinite alternate;
}

@keyframes neonSubtleFlicker {
  0%, 90%, 100% {
    -webkit-text-stroke: 1px #ff4757;
    text-stroke: 1px #ff4757;
    text-shadow: 
      0 0 3px #ff4757,
      0 0 8px #ff475770,
      0 0 15px #ff475740;
  }
  
  5%, 15% {
    -webkit-text-stroke: 1px #ff475780;
    text-stroke: 1px #ff475780;
    text-shadow: 
      0 0 2px #ff4757,
      0 0 5px #ff475750;
  }
}

/* Fallback для браузеров без поддержки text-stroke */
@supports not (-webkit-text-stroke: 1px) {
  .neon-dlc,
  .neon-dlc-minimal,
  .neon-dlc-thin {
    color: #ff4757;
    text-shadow: 
      -2px -2px 0 transparent,
      -2px -1px 0 transparent,
      -2px 0px 0 transparent,
      -2px 1px 0 transparent,
      -2px 2px 0 transparent,
      -1px -2px 0 transparent,
      -1px -1px 0 transparent,
      -1px 0px 0 transparent,
      -1px 1px 0 transparent,
      -1px 2px 0 transparent,
      0px -2px 0 transparent,
      0px -1px 0 transparent,
      0px 0px 0 transparent,
      0px 1px 0 transparent,
      0px 2px 0 transparent,
      1px -2px 0 transparent,
      1px -1px 0 transparent,
      1px 0px 0 transparent,
      1px 1px 0 transparent,
      1px 2px 0 transparent,
      2px -2px 0 transparent,
      2px -1px 0 transparent,
      2px 0px 0 transparent,
      2px 1px 0 transparent,
      2px 2px 0 transparent,
      0 0 5px #ff4757,
      0 0 10px #ff4757,
      0 0 15px #ff4757;
  }
  
  .neon-dlc-minimal {
    color: #ff4757;
    text-shadow: 
      -1.5px -1.5px 0 transparent,
      -1.5px -1px 0 transparent,
      -1.5px 0px 0 transparent,
      -1.5px 1px 0 transparent,
      -1.5px 1.5px 0 transparent,
      -1px -1.5px 0 transparent,
      -1px -1px 0 transparent,
      -1px 0px 0 transparent,
      -1px 1px 0 transparent,
      -1px 1.5px 0 transparent,
      0px -1.5px 0 transparent,
      0px -1px 0 transparent,
      0px 0px 0 transparent,
      0px 1px 0 transparent,
      0px 1.5px 0 transparent,
      1px -1.5px 0 transparent,
      1px -1px 0 transparent,
      1px 0px 0 transparent,
      1px 1px 0 transparent,
      1px 1.5px 0 transparent,
      1.5px -1.5px 0 transparent,
      1.5px -1px 0 transparent,
      1.5px 0px 0 transparent,
      1.5px 1px 0 transparent,
      1.5px 1.5px 0 transparent,
      0 0 10px #ff4757,
      0 0 20px #ff4757,
      0 0 30px #ff4757;
  }
}

/* Reviews section container */
#reviews {
  overflow: hidden; /* Hide any overflow from the entire section */
}

#reviews .max-w-7xl {
  overflow: hidden; /* Ensure the container also hides overflow */
}

/* Regular slider navigation buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: rgba(239, 68, 68, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
  font-size: 16px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(239, 68, 68, 0.9);
  border-color: rgba(239, 68, 68, 0.8);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Hide regular slider navigation on mobile */
@media (max-width: 768px) {
  .slider-prev,
  .slider-next {
    display: none;
  }
}

/* Umbrella Logo Animation Styles */
.umbrella-logo-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.umbrella-parts-container {
  position: relative;
  width: 256px;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.umbrella-part {
  position: absolute;
  width: 128px;
  height: 256px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
  will-change: transform, filter; /* Optimization */
}

/* Initial state */
.umbrella-left {
  left: 50%;
  transform: translateX(-100%) rotate(22deg) translateZ(0);
  transform-origin: right center;
  z-index: 2;
}

.umbrella-right {
  left: 50%;
  transform: translateX(0%) rotate(22deg) translateZ(0);
  transform-origin: left center;
  z-index: 1;
}

/* Hidden text in center */
.umbrella-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  will-change: opacity, transform; /* Optimization */
}

.umbrella-promo-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 
    0 4px 15px rgba(239, 68, 68, 0.4),
    0 0 20px rgba(239, 68, 68, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: scale(0.8);
  transition: all 0.3s ease;
  pointer-events: auto; /* Ensure link is always clickable */
}

.umbrella-promo-link:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: scale(0.85);
  box-shadow: 
    0 6px 20px rgba(239, 68, 68, 0.6),
    0 0 30px rgba(239, 68, 68, 0.5);
}

/* Show text on hover */
.umbrella-logo-container:hover .umbrella-text {
  pointer-events: auto !important;
}

/* Background effects enhance on hover */
@keyframes umbrellaGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.umbrella-logo-container:hover .umbrella-glow {
  animation: umbrellaGlow 3s ease-in-out infinite;
}

/* Mobile Adjustments (only for separation distance) */
@media (max-width: 768px) {
  .umbrella-parts-container {
    width: 200px;
    height: 200px;
  }
  .umbrella-part {
    width: 100px;
    height: 200px;
  }
  .umbrella-promo-link {
    font-size: 12px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .umbrella-parts-container {
    width: 180px;
    height: 180px;
  }
  .umbrella-part {
    width: 90px;
    height: 180px;
  }
  .umbrella-promo-link {
    font-size: 11px;
    padding: 8px 16px;
  }
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.9) !important;
  pointer-events: auto !important;
}

/* Hide particles when mobile menu is active */
.mobile-menu.active ~ #particles-js {
  display: none !important;
}

/* Alternative: make particles even lower when menu is active */
.mobile-menu.active ~ #particles-js {
  z-index: -999999 !important;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(8px);
  border-left: 1px solid #3f3f46;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #3f3f46;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: #d4d4d8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-menu-link:hover {
  background: #27272a;
  color: #ef4444;
}

.mobile-menu-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #3f3f46;
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ef4444;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  justify-content: center;
}

.mobile-cta-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* Navigation dots with neon effect */
.nav-dot li {
  position: relative;
  padding-left: 0.75rem;
  margin-right: 1.5rem;
}

.nav-dot li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #ef4444;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 
    0 0 6px rgba(239, 68, 68, 0.6),
    0 0 12px rgba(239, 68, 68, 0.4),
    0 0 18px rgba(239, 68, 68, 0.2);
  animation: pulseNeon 3s ease-in-out infinite alternate;
}

@keyframes pulseNeon {
  0% {
    box-shadow: 
      0 0 6px rgba(239, 68, 68, 0.6),
      0 0 12px rgba(239, 68, 68, 0.4),
      0 0 18px rgba(239, 68, 68, 0.2);
  }
  100% {
    box-shadow: 
      0 0 8px rgba(239, 68, 68, 0.8),
      0 0 16px rgba(239, 68, 68, 0.6),
      0 0 24px rgba(239, 68, 68, 0.4);
  }
}

/* Script card animation helpers (search/filter) */
.script-card{transition:transform .35s cubic-bezier(.4,0,.2,1),opacity .25s ease,filter .25s ease;will-change:transform,opacity}
.script-card.enter{opacity:0;transform:translateY(10px) scale(.98);filter:blur(.5px)}
.script-card.enter-active{opacity:1;transform:none;filter:none}
.script-card.leave{opacity:1;transform:none;filter:none}
.script-card.leave-active{opacity:0;transform:translateY(10px) scale(.98);filter:blur(.5px)}

/* Hide native browser clear (×) in search inputs to avoid double icons */
input[type="search"]::-webkit-search-cancel-button{ -webkit-appearance:none; appearance:none }
input[type="search"]::-webkit-search-decoration{ -webkit-appearance:none }
input[type="search"]::-ms-clear{ display:none; width:0; height:0 }

/* Search input expand animation */
.search-wrapper{width:220px;max-width:100%;margin-left:auto;margin-right:auto;transition:width .35s cubic-bezier(.4,0,.2,1)}
.search-wrapper:focus-within{width:100%}
.search-wrapper.expanded{width:100%}
@media (max-width:768px){.search-wrapper{width:180px}}

</style>

/* === Image Fullscreen (moved from trailing block) === */
/* Image Fullscreen - ПРОСТОЕ РЕШЕНИЕ */
.image-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: contain !important;
  background: rgba(0,0,0,0.95) !important;
  z-index: 40;
  cursor: pointer !important;
}



/* === Animated gradient background (replaces particles.js) === */
.bg-gradient-animated {
  background: radial-gradient(ellipse at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(239, 68, 68, 0.04) 0%, transparent 50%);
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}


/* ============================================
   Card Redesign: Enhanced cards with gradient buttons
   ============================================ */

/* Card container */
.card-enhanced {
  position: relative;
  background: #18181b;
  border-radius: 1rem;
  border: 1px solid #27272a;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.card-enhanced:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.1),
    0 8px 30px -4px rgba(0, 0, 0, 0.5),
    0 0 20px -5px rgba(239, 68, 68, 0.15);
  transform: translateY(-4px);
}

/* Media area */
.card-media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin: 0.75rem 0.75rem 0;
}

/* Card body */
.card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #f4f4f5;
  transition: color 0.2s ease;
}
.card-enhanced:hover .card-title {
  color: #ffffff;
}

/* Price badge */
.card-price {
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.15));
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.25);
  white-space: nowrap;
}

/* Category badges - positioned over media */
.card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 5;
  padding: 0.25rem 0.6rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card-badge-free {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.card-badge-paid {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.card-badge-service {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.card-badge-default {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* === Buttons === */

/* Primary button: gradient, bright, main action */
.card-btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
  text-decoration: none;
}

.card-btn-primary:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
}

.card-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(34, 197, 94, 0.2);
}

/* Buy variant */
.card-btn-primary.card-btn-buy {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25);
}

.card-btn-primary.card-btn-buy:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}

.card-btn-primary.card-btn-buy:active {
  box-shadow: 0 1px 4px rgba(239, 68, 68, 0.2);
}

/* Ghost button: transparent with border, secondary action */
.card-btn-ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a1a1aa;
  background: transparent;
  border: 1px solid #3f3f46;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.card-btn-ghost:hover {
  color: #f4f4f5;
  border-color: #71717a;
  background: rgba(63, 63, 70, 0.4);
  transform: translateY(-1px);
}

.card-btn-ghost:active {
  transform: translateY(0);
  background: rgba(63, 63, 70, 0.6);
}

/* Mobile card adjustments */
@media (max-width: 768px) {
  .card-media-wrap {
    margin: 0.5rem 0.5rem 0;
  }
  .card-body {
    padding: 0.75rem 1rem 1rem;
  }
  .card-btn-primary,
  .card-btn-ghost {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  .card-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}


/* ============================================
   Hero Redesign v2
   ============================================ */

/* Hero glowing text (replaces text-gradient-anim) */
.hero-glow-text {
  background: linear-gradient(135deg, #ffffff 0%, #f87171 40%, #ef4444 60%, #6366f1 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroGlow 8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(239, 68, 68, 0.2));
}

@keyframes heroGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@supports not (-webkit-background-clip: text) {
  .hero-glow-text { background: none; color: #f87171; }
}

/* Hero primary button (gradient with glow) */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
  background-size: 200% 200%;
  animation: btnGradient 4s ease-in-out infinite;
  box-shadow:
    0 4px 15px rgba(239, 68, 68, 0.3),
    0 0 0 1px rgba(239, 68, 68, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(239, 68, 68, 0.4),
    0 0 0 1px rgba(239, 68, 68, 0.2),
    0 0 40px rgba(239, 68, 68, 0.15);
}

.hero-btn-primary:active {
  transform: translateY(0);
}

@keyframes btnGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero outline button (ghost style) */
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #d4d4d8;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid #3f3f46;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.hero-btn-outline:hover {
  color: #f4f4f5;
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Neon Glow v2 (replaces neon-dlc-minimal) */
.neon-glow-v2 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: transparent;
  -webkit-text-stroke: 1.5px #ff4757;
  text-stroke: 1.5px #ff4757;
  text-shadow:
    0 0 7px rgba(255, 71, 87, 0.6),
    0 0 15px rgba(255, 71, 87, 0.35),
    0 0 30px rgba(255, 71, 87, 0.15);
  animation: neonBreath 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes neonBreath {
  0%, 100% {
    text-shadow:
      0 0 7px rgba(255, 71, 87, 0.6),
      0 0 15px rgba(255, 71, 87, 0.35),
      0 0 30px rgba(255, 71, 87, 0.15);
    -webkit-text-stroke-color: #ff4757;
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 71, 87, 0.8),
      0 0 25px rgba(255, 71, 87, 0.5),
      0 0 50px rgba(255, 71, 87, 0.25),
      0 0 80px rgba(255, 71, 87, 0.1);
    -webkit-text-stroke-color: #ff6b7a;
  }
}

.neon-glow-v2:hover {
  -webkit-text-stroke-color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 71, 87, 1),
    0 0 30px rgba(255, 71, 87, 0.7),
    0 0 60px rgba(255, 71, 87, 0.4),
    0 0 100px rgba(255, 71, 87, 0.2);
  transform: scale(1.03);
}

@supports not (-webkit-text-stroke: 1px) {
  .neon-glow-v2 {
    color: #ff4757;
    text-shadow:
      0 0 7px rgba(255, 71, 87, 0.6),
      0 0 15px rgba(255, 71, 87, 0.35),
      0 0 30px rgba(255, 71, 87, 0.15);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-btn-primary,
  .hero-btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   Hero Title Sweep v3 — gradient sweep effect
   White beam sweeps across red text
   ============================================ */
.hero-sweep {
  background: linear-gradient(
    105deg,
    #ef4444 0%,
    #f87171 30%,
    #ffffff 49%,
    #fca5a5 51%,
    #f87171 70%,
    #ef4444 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroSweep 5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.15));
}

@supports not (-webkit-background-clip: text) {
  .hero-sweep { background: none; color: #f87171; }
}

@keyframes heroSweep {
  0%, 100% { background-position: 200% center; }
  50%      { background-position: -100% center; }
}
