/* ============================
   ViceX / CloudScripts Core
   ============================ */

:root {
  --vicex-pink: #2bffdc;
  --vicex-pink-soft: #6bfff8;
  --vicex-cyan: #00e5ff;
  --vicex-cyan-soft: #5cf1ff;
  --vicex-text: #f5f7ff;

  --color-primary: var(--vicex-cyan);
  --dark-color-secondary: #1f001c;
}

/* ============================
   GLOBAL BASICS
   ============================ */

* {
  line-height: normal;
}

body {
  margin: 0;
  color: var(--vicex-text);
}

*, html {
  scroll-behavior: smooth !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, var(--vicex-pink), var(--vicex-cyan));
  border-radius: 999px;
}

/* ============================
   BACKGROUND IMAGE
   ============================ */

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  z-index: -1;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 30%;
  overflow: scroll;
}

/* ============================
   SOCIAL ICONS
   ============================ */

.social-icons a i {
  transition: fill 0.2s, color 0.2s;
  fill: #ffffff26;
}
.social-icons a:hover i,
.social-icons a:focus i {
  fill: var(--color-primary);
  color: var(--color-primary);
}
/* for SVGs using only currentColor */
.social-icons a i  {
  transition: fill 0.2s;
}
.social-icons a:hover i ,
.social-icons a:focus i  {
  fill: var(--color-primary);
}

/* ============================
   HELPERS
   ============================ */

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

.gradient-btn {
	position: relative;
	overflow: hidden;
}
.gradient-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.6),
		transparent
	);
	transform: rotate(60deg);
	transition: transform 1s;
	transform: translate(-100%, -100%);
}
.gradient-btn:hover::before {
	transform: translate(100%, 100%);
}

.absolute-center {
  position: absolute;
  top: calc(1/2 * 100%);
  left: calc(1/2 * 100%);
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
  --tw-translate-y: calc(calc(1/2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

/* ============================
   INPUTS
   ============================ */

input,
input:focus,
input:focus-visible {
  outline: none;
  border: none;
}

/* ============================
   SWIPER SLIDER
   ============================ */

/* Swiper Slider Custom Styles */ 
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-color-secondary);
}

.packageMainSwiper .swiper-slide {
  overflow: hidden;
}

.packageMainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.packageThumbsSwiper .swiper-slide {
  opacity: 0.2;
  transition: opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.packageThumbsSwiper .swiper-slide-thumb-active { 
  opacity: 1 !important;
  border-color: var(--color-primary) !important;
}

.packageThumbsSwiper .swiper-slide:hover {
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(5, 8, 20, 0.9) !important;
  width: 40px !important; 
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: radial-gradient(circle at top, #1a1030 0, #050814 55%) !important;
  box-shadow:
    0 0 18px rgba(0,229,255,0.85),
    0 14px 34px rgba(0,0,0,0.95);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 16px !important;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px !important;
  }
}

/* ============================
   SCROLLBAR HIDE
   ============================ */

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ============================
   LOADING SPINNER
   ============================ */

.loading-data {
	width: 50px;
	padding: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at center, #ffffff 0, var(--color-primary) 55%, #050814 100%);
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: l3 1s infinite linear;
  box-shadow: 0 0 18px rgba(0,229,255,0.7);
}
@keyframes l3 {
	to {
		transform: rotate(1turn);
	}
}

.btn-loading {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	animation: rotate1 1s linear infinite;
}
.btn-loading::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 3px solid #16161A;
	border-top-color: var(--color-primary);
	border-right-color: var(--vicex-pink);
	animation: prixClipFix 2s linear infinite;
}

/* ============================
   BUTTON COLORS
   ============================ */

.bg-delete {
  background: linear-gradient(135deg, #da1fff09, #ea00ff);
  box-shadow: 0 0 16px rgba(75, 255, 246, 0.7);
} 

.bg-primary {
  background-color: var(--color-primary) !important;
  box-shadow: 0 0 16px rgba(0,229,255,0.75);
}

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

@keyframes prixClipFix {
	0% {
		clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); 
	}
	25% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	50% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	75% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	100% {
		clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}

/* ============================
   SWEETALERT TOASTS (Neon)
   ============================ */

.colored-toast.swal2-icon-success {
	background: radial-gradient(circle at top, #22c55e, #16a34a) !important;
}
.colored-toast.swal2-icon-error {
	background: radial-gradient(circle at top, #ef4444, #b91c1c) !important;
}
.colored-toast.swal2-icon-warning {
	background: radial-gradient(circle at top, #f97316, #ea580c) !important;
}
.colored-toast.swal2-icon-info {
	background: radial-gradient(circle at top, #0ea5e9, #0369a1) !important;
}
.colored-toast.swal2-icon-question {
	background: radial-gradient(circle at top, #38bdf8, #2563eb) !important;
}
.colored-toast .swal2-title {
	color: white;
}
.colored-toast .swal2-close {
	color: white;
}
.colored-toast .swal2-html-container {
	color: white;
}

/* ============================
   ICON BUTTON (.Btn)
   ============================ */

.Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255,255,255,0.03) 0, rgba(11,19,45,0.98) 55%);
  border: solid 1.5px rgb(92, 241, 255);
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  border-radius: 999px;
  color: #eaf9ff;
  box-shadow:
    0 0 14px rgba(0,229,255,0.6),
    0 10px 26px rgba(0,0,0,0.85);
}

.Btn path {
	fill: #ffffffc0;
	transition: all 300ms;
}

.Btn:hover path {
	fill: var(--dark-color-secondary);
}

.Btn::before {
  width: 110%;
  height: 220px;
  position: absolute;
  content: "";
  background-image: linear-gradient(90deg, var(--vicex-pink), var(--vicex-cyan));
  border-radius: 50%;
  left: -110%;
  top: -25%;
  z-index:1;
  transition-duration: .35s;
}

.Btn:hover::before {
  transform: translate(100%,-20%);
  border-radius: 0;
}

.Btn:active {
  transform: translate(3px,3px) scale(0.97);
  transition-duration: .15s;
}

.Btn:hover {
	box-shadow:
    0 0 20px rgba(0,229,255,0.9),
    0 18px 40px rgba(0,0,0,0.98);
	color: var(--dark-color-secondary);
}

/* ============================
   FIRE / SALE BADGE (ViceX)
   ============================ */

@keyframes scaleUpDown {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
  }
  50%, 90% {
    transform: scaleY(1.1);
  }
  75% {
    transform: scaleY(0.95);
  }
  80% {
    transform: scaleX(0.95);
  }
}

@keyframes shake {
  0%, 100% {
    transform: skewX(0) scale(1);
  }
  50% {
    transform: skewX(5deg) scale(0.9);
  }
}

@keyframes particleUp {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: -100%;
    transform: scale(0.5);
  }
}

@keyframes glow {
  0%, 100% {
    background-color: #ff4b7d;
  }
  50% {
    background-color: #ff9bba;
  }
}

.fire {
  position: absolute;
  top: calc(8% - 50px);
  left: calc(100% - 50px);
  width: 35px;
  height: 35px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.fire-center {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: scaleUpDown 3s ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-center .main-fire {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    farthest-corner at 10px 0,
    var(--vicex-pink) 0%,
    var(--vicex-pink-soft) 60%,
    #ffd1f6 95%
  );
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-center .particle-fire {
  position: absolute;
  top: 60%;
  left: 45%;
  width: 10px;
  height: 10px;
  background-color: #ff4b7d;
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right {
  height: 100%;
  width: 100%;
  position: absolute;
  animation: shake 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-right .main-fire {
  position: absolute;
  top: 15%;
  right: -25%;
  width: 80%;
  height: 80%;
  background-color: #ff4b7d;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-right .particle-fire {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #ff4b7d;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 50%;
  animation: particleUp 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: shake 3s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.fire-left .main-fire {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 80%;
  height: 80%;
  background-color: #ff4b7d;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 60% 40%;
}

.fire-left .particle-fire {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 10%;
  height: 10%;
  background-color: #ff4b7d;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #ff2bd6);
  animation: particleUp 3s infinite ease-out 0;
  animation-fill-mode: both;
}

.fire-bottom .main-fire {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 75%;
  height: 75%;
  background-color: #ff6be6;
  transform: scaleX(0.8) rotate(45deg);
  border-radius: 0 40% 100% 40%;
  filter: blur(10px);
  animation: glow 2s ease-out 0;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

/* ============================
   PACKAGE DESCRIPTION
   ============================ */

.package-description {
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity));
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: none;
	font-weight: 400;
}

.package-description :not(:last-child) {
	margin-bottom: .85rem !important;
}

.package-description h1,
.package-description h2,
.package-description h3,
.package-description h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity));
	font-style: normal;
	-webkit-text-decoration: none;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 700;
}

.package-description a {
	--tw-text-opacity: 1;
	color: var(--color-primary);
	transition-timing-function: cubic-bezier(.4,0,.2,1);
	transition-duration: .15s;
}

.package-description a:hover {
	--tw-text-opacity: 1;
	text-decoration-line: underline !important;
	color: var(--color-primary);
}

.package-description b {
	--tw-text-opacity: 1;
	color: rgba(255,252,245,var(--tw-text-opacity));
}

.package-description ol li,
.package-description ul li {
	position: relative;
	padding-left: 2ch;
	--tw-text-opacity: 1;
	color: rgba(240,236,226,var(--tw-text-opacity));
}

.package-description ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: .5rem;
	height: .5rem;
	width: .5rem;
	border-radius: .5rem;
	--tw-bg-opacity: 1;
	background-color: var(--color-primary);
}

.package-description ol {
	counter-reset: ol-counter;
}

.package-description ol li {
	counter-increment: ol-counter;
}

.package-description ol li:before {
	content: counter(ol-counter) ". ";
	position: absolute;
	left: 0;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: var(--color-primary);
}

.package-description img {
	max-width: 100%;
}

.package-description hr {
	color:white;
	opacity: 0.1;
}

.package-description img.fr-rounded {
	border-radius: calc(.5rem*.85);
}

.package-description img.fr-shadow {
	--tw-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	--tw-shadow-color: #0000004d;
	--tw-shadow: var(--tw-shadow-colored);
}

.package-description img.fr-bordered {
	border-width: 2px;
	--tw-border-opacity: 1;
	border-color: rgba(31,94,255,var(--tw-border-opacity));
}

.package-description iframe {
	aspect-ratio: 16/9;
	height: 100%;
	width: 100%;
	border-radius: calc(.5rem*.85);
}

/* Pulse / Gradient utils */
@keyframes pulse-subtle {
  0%,100% {
    transform: scale(1);
    box-shadow: 0 10px 25px -5px rgba(14, 208, 233, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.7);
  }
}
@keyframes gradient {
  0%,100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}
.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

/* ============================
   CYAN GLASS OVERRIDE
   ============================ */

.bg-\[var\(--dark-color-secondary\)\],
.bg-\[var\(--dark-color-secondary\)\]\/0,
.bg-\[var\(--dark-color-secondary\)\]\/10,
.bg-\[var\(--dark-color-secondary\)\]\/20,
.bg-\[var\(--dark-color-secondary\)\]\/30,
.bg-\[var\(--dark-color-secondary\)\]\/40,
.bg-\[var\(--dark-color-secondary\)\]\/50 {
  background:
    linear-gradient(
      125deg,
      #00f5ff00,
      #00e1ff1a,
      #00f5ffd7
    );
  border: 1px solid rgba(0, 245, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* optional: leichter Neon-Glow-Layer oben drauf */
.bg-\[var\(--dark-color-secondary\)\]::before,
.bg-\[var\(--dark-color-secondary\)\]\/0::before,
.bg-\[var\(--dark-color-secondary\)\]\/10::before,
.bg-\[var\(--dark-color-secondary\)\]\/20::before,
.bg-\[var\(--dark-color-secondary\)\]\/30::before,
.bg-\[var\(--dark-color-secondary\)\]\/40::before,
.bg-\[var\(--dark-color-secondary\)\]\/50::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    #29c9d400,
    #21f8c221,
    #00ffdd
  );
  opacity: 0.25;
  pointer-events: none;
}

/* ============================
   EXTRA: NAVIGATION HOVER (TOP)
   ============================ */

.navbar-nav .nav-link,
.nav-item > a,
.header-nav a {
  position: relative;
  color: rgba(232,241,255,0.75);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color .2s ease, text-shadow .2s ease, transform .15s ease;
}

.navbar-nav .nav-link::after,
.nav-item > a::after,
.header-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--vicex-pink), var(--vicex-cyan));
  transform: translateX(-50%);
  transition: width .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.nav-item > a:hover,
.nav-item > a:focus,
.nav-item > a.active,
.header-nav a:hover,
.header-nav a:focus,
.header-nav a.active {
  color: var(--vicex-cyan-soft);
  text-shadow: 0 0 10px rgba(0,229,255,0.9), 0 0 18px rgba(255,43,214,0.6);
  transform: translateY(-1px);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after,
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 70%;
}

/* ============================
   EXTRA: ADD TO CART (nur Farben)
   ============================ */

.add-to-cart button,
.package-button,
.package-add-to-cart button {
  border-radius: 999px;
  border: 1px solid rgb(255, 43, 213) !important; /* pinker Rand */
  box-shadow:
    0 0 14px rgba(0, 238, 255, 0.55),
    0 0 18px rgba(0,229,255,0.55);
  color: #ffffff !important;
}

/* Hover: nur Glow + Rand, Effekt im Inneren bleibt vom Original */
.add-to-cart button:hover,
.package-button:hover,
.package-add-to-cart button:hover {
  border-color: rgb(234, 0, 255) !important;
  box-shadow:
    0 0 24px rgba(0,229,255,0.95),
    0 0 26px rgba(43, 255, 244, 0.75);
  color: #ffffff !important;
}

/* CFX / PLAY Text immer weiß */
button.cfx-button,
button.play-button,
a.cfx-button,



/* ============================
   ViceX Particles Canvas (Global Background)
   ============================ */
#vicex-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* Hinter Content, vor statischem BG */
}

/* ============================
   ViceX Loading Screen (ohne Kasten)
   ============================ */
#vicex-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, #0b1025, #050814 60%, #020308 100%);
}

/* Partikel NUR im Loader */
#vicex-loading-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3; /* über BG/Overlay, unter Text */
}

#vicex-loading.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

/* Hintergrundbild im Loader */
.vicex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) brightness(0.35) saturate(1.25);
  z-index: 1;
}

/* Farb-Overlay */
.vicex-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,43,214,0.25), rgba(0,0,0,0.95)),
    radial-gradient(circle at bottom, rgba(0,229,255,0.16), transparent 60%);
  z-index: 2;
}

/* Zentrale Gruppe – KEIN KASTEN MEHR */
.vicex-center {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  transform: translateY(-10px);
  animation: fadeInUp 1.2s ease forwards;
}

.vicex-main-logo {
  width: 240px;
  height: auto;
  z-index: 6;
  filter:
    drop-shadow(0 0 25px #ff2bd6)
    drop-shadow(0 0 35px #00e5ff)
    drop-shadow(0 0 45px #ff2bd6);
  animation: logoPulse 2.4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 20px #ff2bd6)
      drop-shadow(0 0 30px #00e5ff);
    transform: scale(1);
  }
  50% {
    filter:
      drop-shadow(0 0 30px #00e5ff)
      drop-shadow(0 0 50px #ff2bd6);
    transform: scale(1.08);
  }
}



/* Untertitel */
.vicex-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,241,255,0.85);
  text-shadow:
    0 0 12px rgba(0,229,255,0.7),
    0 0 18px rgba(255,43,214,0.5);
  margin: 0;
}

/* Breiter Balken unter Text */
.vicex-bar {
  width: 520px;
  max-width: 92vw;
  height: 14px;
  background: rgba(4,10,26,0.95);
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 0 18px rgba(0,229,255,0.9),
    0 0 26px rgba(255,43,214,0.8),
    0 16px 40px rgba(0,0,0,0.9);
  border: 1px solid rgba(0,229,255,0.9);
}

/* Progress */
.vicex-progress {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff2bd6, #00ccff, #2bd5ff, #ff2bd6);
  background-size: 260% 100%;
  animation:
    loadProgress 1.6s ease-in-out forwards,
    gradientFlow 1.6s linear infinite;
  border-radius: 999px;
  box-shadow:
    0 0 22px rgba(0,229,255,0.95),
    0 0 30px rgba(255,43,214,0.9);
}

/* kleine Dots im Balken */
.vicex-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.6) 0, transparent 55%),
    radial-gradient(circle at 45% 40%, rgba(255,255,255,0.45) 0, transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.6) 0, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

/* Animationen */
@keyframes loadProgress {
  0%   { width: 0%; }
  15%  { width: 22%; }
  40%  { width: 48%; }
  70%  { width: 78%; }
  100% { width: 100%; }
}

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(10px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 18px #00e5ff,
      0 0 36px #00e5ff,
      0 0 55px #ff2bd6;
  }
  50% {
    text-shadow:
      0 0 30px #ff2bd6,
      0 0 60px #00e5ff,
      0 0 80px #ff2bd6;
  }
}

/* Body bleibt normal, Loader liegt nur drüber */
body {
  opacity: 1;
}
