.language-switcher-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Schatten für den Button */
  font-size: 1.2rem;
  background-color: #793999; /* Button Hintergrundfarbe */
  color: white; /* Button Textfarbe */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Übergangseffekt für Hover */
}

.language-switcher-btn:hover {
  background-color: #6f2c8f; /* Dunkler bei Hover */
}

.language-switcher-dropdown {
  background-color: #793999;
  color: white;
  border-radius: 5px;
  min-width: 120px;
  box-shadow: 0 0 15px rgba(121, 57, 153, 0.5);
  padding: 10px 0;
  position: absolute;
  bottom: 50px; /* Höhe des Buttons plus Abstand */
}

.language-switcher-item {
  padding: 8px 15px;
  font-size: 1rem;
  color: white;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.language-switcher-item:hover {
  background-color: #6f2c8f;
  color: white;
}

.language-switcher {
  position: fixed;
  bottom: 20px; /* Fixiert am unteren Rand */
  left: 10px; /* Fixiert am linken Rand */
  transition: left 0.3s ease; /* Glatter Übergang, wenn der Container verschoben wird */
  z-index: 9999; /* Hohe Z-Index für den Button */
}

/* Responsives Design für mobile Geräte */
@media (max-width: 768px) {
  .language-switcher {
    left: 15px; /* Auf kleineren Bildschirmen etwas nach rechts verschoben */
  }

  .language-switcher-btn {
    width: 45px; /* Etwas kleiner auf mobilen Geräten */
    height: 45px; /* Etwas kleiner auf mobilen Geräten */
  }
}
/**
 * @file opt/aurahyprs-dev/frontend/src/pages/Background.css
 * --------------------------------------------------------------
 * @description
 * This CSS file defines the animations for a dynamic background gradient and a glowing logo effect. 
 * The background gradient smoothly transitions between different opacity levels to create a flowing visual effect, 
 * while the logo glow animation cycles the opacity of the logo to create a glowing effect.
 *
 * @animations
 * - gradientMovement: A smooth, flowing background gradient animation that transitions between different opacity levels.
 * - logoGlow: A glowing logo effect that fades in and out to create a soft, pulsing glow.
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 08, 2025
 * ---------------------------------------------------------------
 */

/* 🌟 AuraHyprs Logo mit pulsiertem Glow */
@keyframes logoGlow {
  0% {
    opacity: 0.3;
    filter: drop-shadow(0px 0px 5px rgba(121, 57, 153, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0px 0px 20px rgba(121, 57, 153, 1));
  }
  100% {
    opacity: 0.3;
    filter: drop-shadow(0px 0px 5px rgba(121, 57, 153, 0.6));
  }
}

.logo-animation {
  animation: logoGlow 6s infinite ease-in-out;
}

/* ⚡ AuraHyprs Neon-Box */
.glow-box {
  background: rgba(121, 57, 153, 0.2);
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(121, 57, 153, 0.8);
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

.glow-box:hover {
  box-shadow: 0px 0px 35px rgba(121, 57, 153, 1);
  transform: scale(1.05);
}
/**
 * @file opt/aurahyprs-dev/frontend/src/pages/Dashboard.css
 * ---------------------------------------------------------------
 * @description
 * This file contains the styling for the dashboard layout, including header,
 * profile section, sidebar, revenue overview, transaction history, and responsive design
 * for various screen sizes.
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 21, 2025
 * ---------------------------------------------------------------
 */

/* 🌐 Base Setup */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  font-family: "Poppins", system-ui, sans-serif;
  background: radial-gradient(circle at center, #16001d38 0%, #000000 100%);
  color: #f1f1f1;
  box-sizing: border-box;
}

/* 🧱 Root Wrapper */
.dashboard-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(55, 0, 179, 0.1), rgba(236, 72, 153, 0.05));
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* 🎯 Dashboard Header */
.dashboard-header {
  background: rgba(55, 0, 179, 0.4);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
          backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 3px solid rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
  padding: 20px;
  text-align: center;
  border-radius: 16px;
  position: relative;
  z-index: 10;
  transition: background 0.3s ease;
}

.dashboard-header:hover {
  background: rgba(139, 92, 246, 0.8);
  box-shadow:
    0 0 40px #ec4899,
    0 0 60px #8b5cf6;
}

.dashboard-header h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 5px #ec4899,
    0 0 10px #8b5cf6,
    0 0 15px #ec4899,
    0 0 20px #8b5cf6;
  -webkit-text-stroke: 0.7px rgba(236, 72, 153, 0.9);
  letter-spacing: 1.2px;
}

/* Logout Button */
.logout-button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: #ff4e4e;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 40px;
  border: 2px solid #ff4e4e;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 0 12px #ff4e4e;
}

.logout-button:hover {
  background: #5a0493;
  color: white;
  box-shadow:
    0 0 20px #ec4899,
    0 0 30px #8b5cf6,
    0 0 40px #ec4899;
  transform: scale(1.1);
}

/* Profile Box */
.profile {
  background: rgba(55, 0, 179, 0.25);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  border: 1.5px solid rgba(139, 92, 246, 0.7);
  box-shadow:
    0 0 25px rgba(236, 72, 153, 0.5),
    inset 0 0 20px rgba(139, 92, 246, 0.3);
  color: white;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.profile:hover {
  box-shadow:
    0 0 50px #ec4899,
    inset 0 0 40px #8b5cf6,
    0 0 60px #b088f9;
}

.avatar-container {
  position: relative;
  margin: 0 auto 20px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(139, 92, 246, 0.9);
  box-shadow:
    0 0 30px #ec4899,
    0 0 40px #8b5cf6 inset;
  transition: transform 0.3s ease;
}

.avatar-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px #ec4899);
}

.profile:hover .avatar-container {
  transform: scale(1.05);
}

/* User Info */
.user-info p {
  font-size: 1rem;
  margin: 8px 0;
  color: #ddd;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.user-info p strong {
  color: #ec4899;
  text-shadow:
    0 0 3px #ff6f9c,
    0 0 5px #ff6f9c;
}

/* Quick Actions */
.card-content button {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  border-radius: 16px;
  padding: 16px 12px;
  font-weight: 700;
  box-shadow:
    0 0 12px #ec4899,
    0 0 16px #8b5cf6;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}

.card-content button:hover {
  background: linear-gradient(135deg, #20c997, #ec4899);
  transform: scale(1.1);
  box-shadow:
    0 0 25px #20c997,
    0 0 30px #ec4899;
}

/* Metrics & Earnings Cards */
.glassmorphism-dark {
  background: rgba(30, 0, 50, 0.45);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.7);
  box-shadow:
    0 0 20px rgba(236, 72, 153, 0.6),
    inset 0 0 15px rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  color: #eee;
  padding: 1.5rem;
}
/* Verbesserung der Kartenüberschrift */
.card-header {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ec4899;
  text-shadow:
    0 0 3px #ec4899,
    0 0 5px #8b5cf6;
}

/* Earnings Textbereich */
.card-content .flex {
  font-size: 1rem;
  color: #ddd;
}

/* Styling für "currentMonth" und "total" */
.card-content .font-bold {
  font-size: 1.2rem; /* Größere Schrift für Wichtigkeit */
  color: #1db954; /* Grüner Text für positive Werte */
  text-shadow:
    0 0 2px #8b5cf6,
    0 0 3px #ec4899;
}

/* Einträge innerhalb der "Earnings"-Sektion */
.earnings-entry {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.earnings-entry:last-child {
  border-bottom: none;
}

/* Zusätzliche Icons für die Sektion */
.earnings-entry span.icon {
  margin-right: 10px;
  color: #ec4899;
}

/* Metrics Items */
.flex > div {
  background: rgba(45, 0, 70, 0.7);
  border-radius: 15px;
  box-shadow:
    0 0 10px #ec4899,
    inset 0 0 8px #8b5cf6;
  text-align: center;
  transition: background 0.3s ease;
}

.text-primary {
  color: #ec4899 !important;
  filter: drop-shadow(0 0 5px #ec4899);
}

/* Recent Content Card */
.recent-content-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 5px #ec4899,
    0 0 10px #8b5cf6,
    0 0 15px #ec4899;
  margin-bottom: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Recent Content Items */
.recent-content-item {
  margin-bottom: 1.6rem;
  background: rgba(55, 0, 179, 0.3);
  border-radius: 20px;
  box-shadow:
    0 0 25px #8b5cf6,
    inset 0 0 15px #ec4899;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.recent-content-item:hover {
  box-shadow:
    0 0 40px #20c997,
    inset 0 0 30px #ec4899;
  transform: scale(1.03);
}

.recent-content-item img,
.recent-content-item iframe {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 0 0;
}

.recent-content-text {
  padding: 1rem 1.5rem;
  color: #eee;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

.recent-content-title-inner {
  color: #ff79c6;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow:
    0 0 8px #ff79c6,
    0 0 15px #ec4899;
  margin-bottom: 0.2rem;
}

.recent-content-subtitle {
  font-style: italic;
  color: #a78bfa;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 5px #a78bfa;
}

.recent-content-stats {
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.recent-content-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ec4899;
  text-shadow: 0 0 5px #ec4899;
  font-weight: 600;
}

/* Icons in Stats */
.recent-content-stats svg {
  stroke: #ec4899;
  filter: drop-shadow(0 0 2px #ec4899);
  width: 16px;
  height: 16px;
}

/* Responsive Grid Fix */
@media (min-width: 768px) {
  .dashboard-root {
    flex-direction: row;
  }
  .sidebar {
    width: 280px;
  }
  .dashboard-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card-content .flex {
    font-size: 1.1rem;
  }
}

/* Quadrat (1:1) statt 16:9 */
.responsive-video-square {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Verhältnis */
  overflow: hidden;
  border-radius: 0.75rem;
}

.responsive-video-square iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
}
/**
 * Register.css
 * ---------------------------------------------------------------
 * Description:
 * This CSS file contains the styling for the registration page. 
 * It provides basic styles for the page layout, form elements, and buttons. 
 * The focus is on creating a clean, simple, and user-friendly design for 
 * new users to register on the platform. The page elements are designed 
 * for clarity and ease of interaction.
 * ---------------------------------------------------------------
 * Features:
 * - Styling for form elements including input fields and labels
 * - Button styling with margin adjustments
 * - Focused on a simple, functional registration layout
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 08, 2025
 */

.submit-button {
  margin-top: 20px; /* Add 20px margin outside the button */
}
/* General Styles */
html,
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #fff;
}

/* Checkout Form */
.checkout-form {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Card input container */
.card-element-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 15px;
}

/* Card input field */
.card-element-container input {
  background-color: #000000;
  color: #fff;
  border: 2px solid #555;
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Focus state for card input */
.card-element-container input:focus {
  border-color: #1faab4;
  box-shadow: 0 0 8px rgba(31, 119, 180, 1);
}

/* Placeholder text style */
.card-element-container input::-moz-placeholder {
  color: #aaa;
}
.card-element-container input::placeholder {
  color: #aaa;
}

/* Error Message */
.error-message {
  color: #ff4d4d;
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}

/* Success Message */
.success-message {
  color: #4caf50;
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}

/* Media Queries */
@media (max-width: 768px) {
  .checkout-form {
    margin: 20px;
    padding: 20px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .neon-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .checkout-form {
    padding: 15px;
  }
}

/* Hover Effects for Elements */
.card-element-container input {
  background-color: #121212;
  color: #fff;
  border: 2px solid #555;
  border-radius: 15px;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 101;
}

.card-element-container input:focus {
  border-color: #1f77b4;
  box-shadow: 0 0 8px rgba(31, 119, 180, 1);
  z-index: 101;
}

.card-element-container input::-moz-placeholder {
  color: #aaa;
  z-index: 101;
}

.card-element-container input::placeholder {
  color: #aaa;
  z-index: 101;
}

/* Glowing Neon Text Effect */
.glowing-text {
  font-size: 2rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff,
      0 0 40px #ff00ff,
      0 0 50px #ff00ff,
      0 0 75px #ff00ff,
      0 0 100px #ff00ff;
  }
  100% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 30px #00ffff,
      0 0 40px #00ffff,
      0 0 50px #00ffff,
      0 0 75px #00ffff,
      0 0 100px #00ffff;
  }
}

/* Global Neon Glow Animation */
@keyframes neonGlow {
  0% {
    text-shadow:
      0 0 20px #00ff00,
      0 0 30px #00ff00,
      0 0 40px #00ff00,
      0 0 50px #00ff00,
      0 0 75px #00ff00,
      0 0 100px #00ff00;
  }
  100% {
    text-shadow:
      0 0 10px #ff0000,
      0 0 20px #ff0000,
      0 0 30px #ff0000,
      0 0 40px #ff0000,
      0 0 50px #ff0000,
      0 0 75px #ff0000;
  }
}
:root {
  --aura-purple: #512188;
  --aura-neon: #8d0fd2;
  --aura-glow: #ff00cc;
  --aura-glass: rgba(255, 255, 255, 0.07);
  --aura-border: rgba(255, 255, 255, 0.25);
  --aura-shadow: 0 8px 30px rgba(140, 0, 255, 0.3);
}

/* Complete-Container */
.creator-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #1a001f, #0a0014);
  color: #fff;
  padding-bottom: 100px;
}

.meta-icon {
  font-size: 1.2rem;
  color: var(--aura-neon);
  margin-bottom: 0.3rem;
}

.profile-meta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  text-align: center;
}

.profile-meta-item {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid var(--aura-border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 0 12px rgba(140, 0, 255, 0.15);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.profile-meta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px var(--aura-glow);
}

.profile-meta-label {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.profile-meta-value {
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--aura-neon), var(--aura-glow));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.aura-status {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--aura-glow);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 0, 204, 0.3);
  box-shadow: 0 0 8px rgba(255, 0, 204, 0.15);
  animation: auraPulse 4s infinite ease-in-out;
}

/* Hero Banner (ultra widescreen + blur) */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 369px;
  overflow: visible;
}

.banner-img {
  width: 100%;
  height: auto;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.4) blur(1px);
  border-bottom: 2px solid var(--aura-border);
  border: 4px solid var(--aura-neon);
  border-radius: 1.5rem;
}

/* Profilbild über dem Banner */
.hero-profile-wrapper {
  position: absolute;
  bottom: 260px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-profile-wrapper {
    left: 100px;
    transform: none;
  }
}

/* Profilbild mit Neon-Aura */
.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--aura-neon);
  box-shadow:
    0 0 15px var(--aura-glow),
    0 0 25px var(--aura-glow),
    0 0 40px rgba(255, 0, 204, 0.5);
  transition: transform 0.3s ease;
  background-color: #0a0014;
}
.profile-img:hover {
  transform: scale(1.08);
}

/* Container mit Glass-Effekt */
.profile-container {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: var(--aura-glass);
  border: 1px solid var(--aura-border);
  box-shadow: var(--aura-shadow);
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 760px;
  animation: fadeInUp 0.6s ease-out;
  z-index: 5;
  position: relative;
}

.creator-info {
  text-align: center;
  padding: 1rem 0;
  position: relative;
}

.creator-info h1 {
  position: relative;
  display: inline-block;
  padding: 0.4rem 1.4rem;
  font-size: 2.4rem;
  font-weight: 800;
  z-index: 1;
  background: linear-gradient(90deg, var(--aura-neon), var(--aura-glow));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  animation: none;
}

/* Dunkle Glass-Box hinter dem Text für starken Kontrast */
.creator-info h1::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Bio bleibt leicht und elegant */
.creator-info .bio {
  font-style: italic;
  color: #dcdcdc;
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.2rem;
}
.link {
  color: var(--aura-glow);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.3s ease;
}
.link:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Besucherzähler */
.visitor-count {
  margin-top: 1.5rem;
  font-weight: bold;
  background-color: rgba(255, 0, 204, 0.08);
  padding: 10px 20px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 0, 204, 0.3);
}

/* Stat-Karten */
.content-counters {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.content-counters p {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--aura-shadow);
}

/* Video Card */
.promo-video-card {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  box-shadow: var(--aura-shadow);
  overflow: hidden;
}

/* Responsive Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Button Style */
button,
.save-btn {
  margin-top: 2rem;
  padding: 12px 24px;
  border: none;
  border-radius: 2rem;
  background: linear-gradient(to right, var(--aura-purple), var(--aura-glow));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, var(--aura-glow), var(--aura-purple));
}

/* Ladeanimation */
.loading-spinner {
  color: var(--aura-glow);
  text-align: center;
  font-size: 1.2rem;
  margin-top: 3rem;
}

/* API-Fallback */
.fallback-text {
  margin-top: 1rem;
  color: rgba(209, 207, 207, 0.685);
  font-style: italic;
}

/* Gallery */
.aura-gallery {
  margin-top: 40px;
}

.aura-gallery h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.gallery-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.gallery-slider::-webkit-scrollbar {
  height: 6px;
}
.gallery-slider::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
}
.gallery-slider::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-item img {
  width: 200px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    text-shadow:
      0 0 5px var(--aura-neon),
      0 0 10px var(--aura-glow),
      0 0 3px var(--aura-glow);
  }
  50% {
    text-shadow:
      0 0 8px var(--aura-neon),
      0 0 15px var(--aura-glow),
      0 0 2px var(--aura-glow);
  }
}

.creator-info h1 {
  animation: auraPulse 3s ease-in-out infinite;
}

/* 🛠️ Finaler Mobile Fix (für alles <= 540px) */
@media screen and (max-width: 540px) {
  .profile-img {
    width: 80px !important;
    height: 80px !important;
    border-width: 2px !important;
    box-shadow:
      0 0 6px var(--aura-glow),
      0 0 12px var(--aura-glow),
      0 0 20px rgba(255, 0, 204, 0.3) !important;
  }

  .hero-profile-wrapper {
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-bottom: 169px;
    padding-right: 239px;
  }

  .profile-container {
    margin-top: 5px;
    padding: 1rem !important;
  }

  .creator-info h1 {
    font-size: 1.6rem !important;
    padding: 0.3rem 1rem !important;
  }
  .creator-info h1::before {
    inset: -4px !important;
    border-radius: 1rem !important;
  }
}

/* ✅ Mobile First Optimierung: 375px - 479px */
@media (max-width: 479px) {
  .hero-profile-wrapper {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-img {
    width: 60px;
    height: 60px;
    border: 3px solid var(--aura-neon);
    box-shadow:
      0 0 8px var(--aura-glow),
      0 0 15px var(--aura-glow),
      0 0 20px rgba(255, 0, 204, 0.5);
  }

  .profile-container {
    margin-top: 5px;
    padding: 1rem;
  }

  .creator-info h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0 auto;
    text-shadow:
      0 0 3px rgba(0, 0, 0, 0.6),
      0 0 6px rgba(0, 0, 0, 0.3);
  }

  .creator-info h1::before {
    width: 100%;
    height: 120%;
  }
}

/* ✅ Kleine Tablets (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .hero-profile-wrapper {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .profile-container {
    margin-top: 5px;
    padding: 1.25rem;
  }

  .creator-info h1 {
    font-size: 1.8rem;
  }
}

/* ✅ Tablets & Small Laptops (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-profile-wrapper {
    bottom: 120px;
    left: 80px;
    transform: none;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .profile-container {
    margin-top: 5px;
    padding: 1.75rem;
  }

  .creator-info h1 {
    font-size: 2.1rem;
  }
}

/* ✅ Standard Desktops (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-profile-wrapper {
    bottom: 140px;
    left: 100px;
  }

  .profile-img {
    width: 140px;
    height: 140px;
  }

  .profile-container {
    margin-top: 10px;
    padding: 2rem;
  }

  .creator-info h1 {
    font-size: 2.3rem;
  }
}

/* ✅ Large Screens (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .hero-profile-wrapper {
    bottom: 160px;
    left: 120px;
  }

  .profile-img {
    width: 160px;
    height: 160px;
  }

  .profile-container {
    margin-top: 15px;
  }

  .creator-info h1 {
    font-size: 2.6rem;
  }
}

/* ✅ 4K+ Ultra-HD (1920px and up) */
@media (min-width: 1920px) {
  .hero-profile-wrapper {
    bottom: 180px;
    left: 140px;
  }

  .profile-img {
    width: 180px;
    height: 180px;
  }

  .profile-container {
    margin-top: 20px;
  }

  .creator-info h1 {
    font-size: 2.8rem;
  }
}
.creator-settings {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

.bio-section textarea,
.bio-textarea {
  min-height: 160px !important;
  resize: vertical;
  font-size: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #fff;
  width: 100%;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.link-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.link-input:invalid {
  border-color: rgba(255, 0, 100, 0.5);
}

.promo-video-section input {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 0.75rem;
  width: 100%;
}

iframe {
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(140, 0, 255, 0.2);
}
/**
 * @file /opt/aurahyprs-dev/frontend/src/pages/Discover.css
 * @module DiscoverPageStyles
 * ---------------------------------------------------------------
 * @description
 * Mobile-first CSS styles for the Discover page card layout on AuraHyprs.
 * This stylesheet defines the visual appearance and responsive behavior of 
 * container layouts, interactive content cards, headers, body sections, media,
 * buttons, and badges – all optimized for screens starting at 420px and up.
 *
 * @notes
 * - Container: Defines maximum width and centering behavior.
 * - Card: Encapsulates card appearance, hover/touch interactions.
 * - Header: Displays creator/user information inside cards.
 * - Body: Contains media, text, and content details.
 * - Media: Image and video handling with cropping and fitting.
 * - Buttons: Reusable button styles for actions like visit, comment, etc.
 * - Badges: Tag-like elements for categorization or counters.
 * - Mobile Responsiveness: Tailored styles for <420px viewport widths.
 * - Fully responsive and optimized for touch and hover interactions via media queries.
 *
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created 2025-03-13
 * @updated 2025-06-28
 * ---------------------------------------------------------------
 */

/* === Base Layout === */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: #121212;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* === Container (High-Perf Einstein Version) === */
/* === Container (High-Perf Einstein Version, mit !important für sichere Priorität) === */
.container {
  width: 100% !important;
  max-width: 1440px !important; /* Begrenze Breite auf max 1440px */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(16px, 5vw, 80px) !important; /* responsive Padding */
  padding-right: clamp(16px, 5vw, 80px) !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  box-sizing: border-box !important;
}

/* === Cards === */
.card {
  margin: 28px 0;
  padding: 16px 16px;
  background: #121212cf;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* === First Card Margin Fix === */
.card:first-of-type {
  margin-top: 12px; /* oder 0px, wenn es ganz oben anschließen soll */
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* === Card Header === */
.card-header {
  background-color: #2b2b2b;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px 12px 12px 12px;
}

/* Profilbild mit Aura-Glow */
.card-header .profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(64, 224, 208, 0.7);
  box-shadow:
    0 0 8px rgba(64, 224, 208, 0.6),
    0 0 15px rgba(121, 57, 153, 0.4);
  transition: box-shadow 0.3s ease;
}

.card-header .profile-pic:hover {
  box-shadow:
    0 0 16px rgba(255, 0, 255, 0.6),
    0 0 24px rgba(64, 224, 208, 0.8);
}

/* Header Content (Name, Title, Sub) */
.card-header-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.card-header-content h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.card-header-content .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 4px 0;
  color: #40e0d0;
}

.card-header-content .card-text {
  font-size: 0.9rem;
  color: #bbb;
}

/* === Card Body === */
.card-body {
  padding: 20px 16px;
  color: #fff;
  border-radius: 10px 10px 10px 10px;
}

/* Card Title (nur für Body, nicht Header) */
.card-body .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

/* Card Text im Body */
.card-body .card-text {
  font-size: 0.95rem;
  color: #ccc;
}

/* === Media (Image/Video) === */
.card-body .card-img,
.card-body video {
  width: 100%;
  max-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin-bottom: 16px;
}

.card-body .card-img:hover {
  transform: scale(1.05);
}

/* === Blur Preview === */
.preview-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transition: filter 0.3s ease-in-out;
  z-index: 1;
}

.preview-overlay:hover {
  filter: blur(5px);
}

.preview-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  padding: 12px;
}

/* === Comments === */
.comment-section {
  margin-top: 32px;
  padding: 16px;
  background-color: #2b2b2b;
  border: 1px solid #444;
  border-radius: 8px;
}

.comment-item {
  padding: 12px 0;
  border-bottom: 1px solid #444;
  font-size: 0.9rem;
  color: #ccc;
}

.comment-item:last-child {
  border-bottom: none;
}

textarea,
.comment-textarea {
  background-color: #333;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  font-size: 0.95rem;
  width: 100%;
  resize: none;
  margin-top: 10px;
}

textarea:focus {
  border-color: #ff007f;
  outline: none;
}

.text-muted {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 8px;
}

/* === Buttons === */
button,
.btn {
  display: inline-block;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 20px;
  color: #fff !important;
  background: linear-gradient(45deg, #40e0d0, #40b5e0);
  border: 2px solid transparent;
  box-shadow:
    0 0 15px rgba(64, 224, 208, 0.7),
    0 0 15px rgba(121, 57, 153, 0.7);
  transition: 0.3s ease;
  margin-top: 10px;
}

button:hover,
.btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(64, 224, 208, 0.9),
    0 0 40px rgba(121, 57, 153, 0.8);
}

button:active,
.btn:active {
  transform: scale(0.95);
  background: linear-gradient(45deg, #ff007f, #d500f9);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.8),
    0 0 50px rgba(121, 57, 153, 0.8);
}

/* === Interaction Stack === */
.interaction-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.interaction-button {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  border-radius: 10px;
}

/* === Visitor Glow Section === */
.visitor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.visitor-container:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.8),
    0 0 50px rgba(255, 0, 255, 0.6);
}

.visitor-badge,
.visitor-container .badge {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 12px;
  background: linear-gradient(45deg, #40e0d0, #40b5e0);
  color: #fff;
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.visitor-badge:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.8),
    0 0 50px rgba(255, 0, 255, 0.6);
}

/* === Responsive Optimierungen === */
@media (max-width: 768px) {
  .container {
    padding: 12px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 1rem;
  }

  .visitor-badge {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 10px;
  }

  .visitor-container {
    padding: 12px;
  }

  .visitor-badge {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .interaction-button {
    padding: 10px 0;
  }

  textarea,
  .comment-textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  button,
  .btn {
    padding: 10px 16px;
  }
}
@media (min-width: 1024px) {
  .card {
    display: flex;
    flex-direction: column;
    padding: 32px;
  }

  .card-header {
    padding: 24px;
    gap: 20px;
  }

  .card-body {
    padding: 24px;
  }
}

@media (min-width: 1440px) {
  .card {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.spotlight-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 10px; /* oben/unten 10px, links/rechts 20px für Abstand */
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: flex-start; /* Wichtig: oben ausrichten */
  margin: 0;
}

.spotlight-container::-webkit-scrollbar {
  display: none;
}

.spotlight-card {
  flex-shrink: 0;
  width: 300px;
  height: 470px; /* fixe Höhe für alle */
  background: #1e1e1e;
  border-radius: 14px;
  border: 1px solid rgba(64, 224, 208, 0.2);
  box-shadow: 0 4px 14px rgba(0, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.spotlight-card {
  transition: none !important;
  transform: none !important;
  box-shadow: 0 4px 14px rgba(0, 255, 255, 0.15) !important;
  pointer-events: auto; /* Hover-Effekte bleiben nur, wenn Pointer Events erlaubt */
}

/* Entfernt Hover komplett */
.spotlight-card:hover,
.spotlight-card:focus,
.spotlight-card:active {
  transform: none !important;
  box-shadow: 0 4px 14px rgba(0, 255, 255, 0.15) !important;
  cursor: default !important;
  pointer-events: none !important; /* Optional, wenn wirklich nix passieren soll */
}

/* Reset margin/padding/position bei der ersten Karte */
.spotlight-card:first-child {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  top: 0 !important;
}

/* Bild fixieren */
.spotlight-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin: 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
}

/* Card Body */
.card-body {
  flex: 1;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* === GLOW Pulse Effekt === */
@keyframes neonPulse {
  0%,
  100% {
    box-shadow:
      0 0 2px #40e0d0,
      0 0 4px #40e0d0;
  }
  50% {
    box-shadow:
      0 0 3px #40e0d0,
      0 0 6px #79a1ff;
  }
}

.spotlight-card.glow {
  animation: neonPulse 6s ease-in-out infinite;
  border: 1px solid rgba(64, 224, 208, 0.25);
  box-shadow:
    0 0 2px #40e0d0,
    0 0 5px #79a1ff;
  transition: box-shadow 0.3s ease;
}

/* Bild – KEIN Glow */
.spotlight-card.glow img {
  border: none;
  box-shadow: none;
  transition: none;
}

.spotlight-card.glow img:hover {
  box-shadow: none;
}

/* Text Glow */
.spotlight-card.glow .card-body {
  color: #40e0d0;
  text-shadow:
    0 0 1px #40e0d0,
    0 0 2px #79a1ff;
}

.spotlight-card.glow .card-body .card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #40e0d0;
  text-shadow:
    0 0 2px #40e0d0,
    0 0 4px #79a1ff;
  margin-bottom: 6px;
}

.spotlight-card.glow .card-body .card-text {
  font-size: 1rem;
  color: #a0fff0cc;
  text-shadow: 0 0 1px #40e0d0;
}
/**
 * Upload.css
 * ---------------------------------------------------------------
 * Description:
 * This stylesheet is designed to style the file upload form, including the input fields, file preview area,
 * tags, checkboxes, alert messages, and the submit button. It ensures a clean, user-friendly layout with smooth 
 * transitions and hover effects. It also provides distinct visual feedback for success and error messages.
 *
 * Main components:
 * - Input Fields: Styled with rounded corners, subtle focus effects, and smooth transitions.
 * - File Preview: A preview area for uploaded images with a soft shadow and rounded corners.
 * - Tags: Displayed as badges with a hover effect and distinct colors.
 * - Alerts: Success and error messages with rounded corners, bold text, and appropriate background colors.
 * - Submit Button: A button with a blue background that changes color on hover and provides a smooth transition.
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 28, 2025
 */

/* === Form Control Styling === */
.form-control {
  border-radius: 8px; /* Round corners */
  border: 1px solid #444; /* Dark border */
  padding: 10px; /* Inner padding */
  background-color: #1a1a1a; /* Slightly darker input field */
  color: #ddd; /* Light text */
  transition: all 0.3s ease; /* Smooth transition */
}

.form-control:focus {
  border-color: #00bcd4; /* Accent border on focus */
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.5); /* Subtle glow */
}

/* === Labels and Other Elements === */
.form-group {
  margin-bottom: 20px;
}

.form-check-label {
  font-weight: 500;
  color: #ff00e6; /* Glow pink for labels */
}

.text-muted {
  font-size: 14px;
  color: #c6c6c6;
}

/* === Buttons === */
button[type="submit"] {
  background-color: #ff00e6; /* Neon pink button */
  color: white;
  border: none;
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #d900d0; /* Darker pink on hover */
}

button[type="submit"]:focus {
  outline: none;
}

/* === Image Preview === */
#image-preview {
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 188, 212, 0.1); /* Soft glow */
}

/* === Upload Section === */
#tags {
  margin-top: 10px;
}

#tags .badge {
  background-color: #8800ff; /* Purple tags */
  color: white;
  margin-right: 5px;
}

.badge:hover {
  background-color: #ffd700; /* Gold hover effect */
  cursor: pointer;
}

/* === Alert Messages === */
.alert {
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 15px;
  font-weight: bold;
}

.alert-success {
  background-color: #28a745;
  color: #01000c;
}

.alert-danger {
  background-color: #dc3545;
  color: #160016;
}

/* === Responsive Design === */
@media (min-width: 576px) {
  .container {
    padding: 30px;
  }

  .form-control {
    padding: 12px;
  }

  button[type="submit"] {
    padding: 14px 30px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 40px;
  }

  button[type="submit"] {
    padding: 16px 35px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 800px;
    margin: 0 auto;
  }

  button[type="submit"] {
    padding: 16px 40px;
  }
}
/**
 * Messages.css
 * ---------------------------------------------------------------
 * 
 * This CSS file contains styles for the chat component, which includes the chat window, 
 * message input area, user profile section, and message history. It also includes responsive 
 * design adjustments for smaller screen sizes.
 * 
 * Key Sections:
 * - Chat Container: Defines the overall structure of the chat window, including fixed input area.
 * - Message Styles: Differentiates between sent and received messages with distinct styling.
 * - User Profile: Styles the user profile section with padding, background, and a shadow effect.
 * - Responsive Design: Adjusts the layout for smaller screen sizes, making the chat window and input areas more user-friendly.
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 28, 2025
 */

/* Allgemeine Reset & Layout */
.chat-wrapper {
  display: flex;
  height: 100vh;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #eee;
  font-family: "Poppins", sans-serif;
  gap: 0.3rem;
  padding: 0.3rem;
  box-sizing: border-box;
  border-radius: 10px;
}

/* Glas & Glow Backgrounds */
.aura-glass {
  background: rgba(255 255 255 / 0.07);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(255 255 255 / 0.15);
  box-shadow: 0 0 20px rgba(130, 95, 255, 0.35);
  display: flex;
  flex-direction: column;
}

.aura-glow {
  position: relative;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.aura-glow:hover,
.user-item.active.aura-glow {
  box-shadow:
    0 0 8px #8e66ff,
    0 0 16px #8e66ff,
    0 0 32px #a278ff,
    0 0 48px #c0a0ff;
  border-radius: 10px;
}

/* Sidebar */
.chat-sidebar {
  flex: 0 0 260px;
  overflow-y: auto;
  padding: 0.3rem;
  border-right: 1px solid rgba(255 255 255 / 0.12);
  min-width: 220px;
}

/* User list styling */
.user-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d8cfff;
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease;
}

.user-item:hover {
  background-color: rgba(143, 95, 255, 0.2);
}

/* Avatare */
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #a492ff;
  filter: drop-shadow(0 0 3px #a492ff);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1);
}

/* Profilbild im Header */
.profile-avatar {
  width: 88px;
  height: 88px;
  border-color: #c1a3ff;
  filter: drop-shadow(0 0 8px #9e80ff) drop-shadow(0 0 12px #b497ff);
}

/* Glow Effekt speziell für Profilbild */
.glow-avatar {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px #a67cff);
  }
  50% {
    filter: drop-shadow(0 0 18px #c8a6ff);
  }
}

/* Suchinput & Chat Input */
.input-glass {
  background: rgba(255 255 255 / 0.1);
  border: 1px solid rgba(255 255 255 / 0.2);
  color: #eee;
  font-weight: 600;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  box-shadow: inset 0 0 6px rgba(255 255 255 / 0.15);
}

.input-glass::-moz-placeholder {
  color: #d3c8ffaa;
}

.input-glass::placeholder {
  color: #d3c8ffaa;
}

.input-glass:focus {
  background: rgba(255 255 255 / 0.2);
  outline: none;
  border-color: #a278ff;
  box-shadow:
    0 0 10px #a278ff,
    inset 0 0 12px rgba(255 255 255 / 0.35);
}

/* Suchleiste */
.search-input {
  margin-bottom: 1rem;
}

/* Chat Main Bereich */
.chat-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 1rem;
  gap: 1rem;
  max-width: 100%;
}

/* Header mit Name & Status */
.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255 255 255 / 0.15);
  color: #cbbcff;
  font-weight: 700;
  text-shadow: 0 0 8px #a278ff;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 12px; /* Abstand zum Avatar */
}

.status-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #4ade80; /* helles Grün */
  font-weight: 600;
  text-shadow: 0 0 6px #22c55e88; /* softer grüner Glow */
}

.status-dot {
  width: 5px;
  height: 5px;
  background-color: #22c55e; /* kräftiges Grün */
  border-radius: 50%;
  box-shadow: 0 0 8px 2px #22c55eaa; /* leuchtender Glow */
}

/* User Info (Name + Status) */
.user-info strong {
  font-size: 1.3rem;
}

.user-info small {
  font-size: 0.9rem;
  color: #b8a9ffcc;
  font-weight: 600;
}

/* Chat Box */
.chat-box {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 1rem;
  background: rgba(0 0 0 / 0.18);
  border-radius: 14px;
  box-shadow: inset 0 0 16px #6f5bcf;
  scrollbar-width: thin;
  scrollbar-color: #9a7aff44 transparent;
}

/* Scrollbar für Webkit */
.chat-box::-webkit-scrollbar {
  width: 8px;
}

.chat-box::-webkit-scrollbar-thumb {
  background: #9a7aff55;
  border-radius: 12px;
}

.chat-box::-webkit-scrollbar-track {
  background: transparent;
}

.chat-input-wrapper {
  padding-top: 0.5rem;
}

.chat-input-relative {
  position: relative;
  width: 100%;
}

.chat-textarea {
  padding-right: 4.5rem !important; /* Platz für Button schaffen */
}

.btn-send-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08db95, #6ed8ff);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 6px rgba(170, 120, 255, 0.6),
    0 0 12px rgba(200, 170, 255, 0.8);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  z-index: 10;
  padding: 0;
  border: none;
}

.btn-send-icon:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow:
    0 0 10px #cfc2ff,
    0 0 20px #e0d4ff;
}

.btn-send-icon:disabled {
  background: #5e12b584;
  color: #860eab;
  cursor: not-allowed;
  box-shadow: none;
}

/* Messages Styling */
.message {
  margin: 4px 0 4px;
  padding: 0.01rem 0.4rem;
  border-radius: 12px;
  max-width: 96%;
  word-wrap: break-word;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  box-shadow: 0 0 4px #8f78ff44;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

/* Gesendete Nachrichten */
.message-sent {
  background: linear-gradient(135deg, #705affdd, #a66dffdd);
  color: #fff;
  margin-left: auto;
  text-align: right;
  box-shadow:
    0 0 6px #a878ffcc,
    0 0 18px #d3b9ffcc;
}

/* Empfangene Nachrichten */
.message-received {
  background: linear-gradient(135deg, #4a3586dd, #6f4d9cdd);
  color: #eee;
  margin-right: auto;
  box-shadow:
    0 0 3px #5e3d9fcc,
    0 0 4px #9c82b6cc;
}

/* Zeitstempel */
.timestamp {
  font-size: 0.7rem;
  color: #c0a8ffaa;
  display: block;
  margin-bottom: 0.3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Input Footer */
.chat-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-input textarea {
  resize: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: none;
  box-shadow: inset 0 0 12px #7a65ffaa;
  background: rgba(255 255 255 / 0.05);
  color: #ddd;
  transition: box-shadow 0.3s ease;
}

.chat-input textarea:focus {
  outline: none;
  box-shadow:
    0 0 12px #af9fff,
    inset 0 0 16px #b1aaffcc;
}

/* Send Button */
.btn-glow {
  background: linear-gradient(90deg, #825aff, #b496ff);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  box-shadow:
    0 0 8px #a27fff,
    0 0 16px #b59cff;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.btn-glow:hover:not(:disabled) {
  box-shadow:
    0 0 14px #c9b7ff,
    0 0 32px #dcd0ff;
  transform: scale(1.05);
}

.btn-glow:disabled {
  background: #64598f;
  box-shadow: none;
  cursor: not-allowed;
}

/* Leere Chat- & Fehlermeldungen */
.aura-alert-glow {
  background: rgba(130, 100, 255, 0.15) !important;
  border: 1px solid rgba(130, 100, 255, 0.3) !important;
  color: #d6caff !important;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(130, 100, 255, 0.4);
  border-radius: 12px;
}

/* Empty Chat Info */
.empty-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Layouts */
/* Mobile */
@media (max-width: 420px) {
  .chat-wrapper {
    flex-direction: column;
    height: 100vh;
  }

  .chat-sidebar {
    flex: none;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255 255 255 / 0.15);
  }

  .chat-main {
    flex: 1;
    width: 100%;
  }

  .user-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.6rem;
  }

  .user-item {
    flex: none;
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
  }

  .user-item span {
    display: none; /* Nur Avatar bei superkleinen Screens */
  }

  .chat-header {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 768px) {
  .chat-wrapper {
    flex-direction: column;
    height: 100vh;
  }

  .chat-sidebar {
    flex: none;
    width: 100%;
    max-height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(255 255 255 / 0.15);
  }

  .chat-main {
    flex: 1;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .chat-wrapper {
    flex-direction: row;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 576px) {
  .user-management-container h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .table th,
  .table td {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}
.content-moderation-wrapper {
  padding: 1rem;
}

@media (max-width: 576px) {
  .content-moderation-wrapper {
    padding: 0.5rem;
  }

  .content-moderation-wrapper h1 {
    font-size: 1.5rem;
  }

  .table th,
  .table td {
    font-size: 0.85rem;
    vertical-align: middle;
    white-space: nowrap;
  }

  .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
  }
}
.warnings-wrapper {
  padding: 1rem;
}

@media (max-width: 576px) {
  .warnings-wrapper {
    padding: 0.5rem;
  }

  .warnings-wrapper h1 {
    font-size: 1.5rem;
  }

  .table th,
  .table td {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}
.sales-overview-wrapper {
  padding: 1rem;
}

@media (max-width: 576px) {
  .sales-overview-wrapper {
    padding: 0.5rem;
  }

  .sales-overview-wrapper h1 {
    font-size: 1.5rem;
  }

  .table th,
  .table td {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}
/**
 * NotFound.css
 * ---------------------------------------------------------------
 *
 * This stylesheet contains the design elements for the 404 error message page.
 * It uses modern techniques such as glass morphism, smooth animations and neon glow effects,
 * to ensure an appealing and professional design.
 *
 * @notes
 * - Radial background with animated light effect
 * - Glass morphism for the content box
 * - Large, eye-catching 404 display with glow effect
 * - Animated buttons with soft hover effect
 * - Responsive adaptation for different screen sizes
 * ---------------------------------------------------------------
 * @author MJSCHERER
 * @created March 13, 2025
 * @updated June 27, 2025
 */

/* Background with smooth animation and more width */
.not-found-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #8b45c1, #5b2779);
  color: white;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  width: 100vw;
}

/* Subtile animierte Lichteffekte für Tiefe */
.not-found-container::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(100px);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

/* Content Box – mehr Breite, Glassmorphismus & weiche Rundungen */
.content-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px;
  width: 80vw; /* Jetzt nimmt die Box 80% der Bildschirmbreite ein */
  border-radius: 25px;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeIn 0.8s ease-out;
}

/* 404 Fehlertext mit Glow und Fluid-Size */
.error-code {
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
  animation: pulseGlow 1.5s infinite alternate;
}

/* Button-Container */
.button-group {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* Sorgt für bessere Responsiveness */
  margin-top: 10px;
}

/* Primärer Button – Glow Effekt */
.btn-custom-primary {
  background: linear-gradient(135deg, #9a55bd, #793999);
  border: none;
  color: #000;
  padding: 16px 32px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 20px rgba(183, 43, 204, 0.5);
}

.btn-custom-primary:hover {
  background: linear-gradient(135deg, #b780d3, #ba66e4);
  transform: scale(1.08);
}

/* Sekundärer Button – Lila Neon */
.btn-custom-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #a35bc6;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 12px rgba(163, 91, 198, 0.6);
}

.btn-custom-secondary:hover {
  background: rgba(163, 91, 198, 0.3);
  border: 2px solid #ffffff;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0px 0px 25px rgba(163, 91, 198, 0.9);
}

/* Glow-Puls Animation für 404 */
@keyframes pulseGlow {
  from {
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
  }
  to {
    text-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
  }
}
/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}:root{--primary-color:#793999;--secondary-color:#040404;--white-color:#fff;--black-color:#000;--text-color-light:#76508f;--link-color:#20c997;--visited-link-color:#00715a;--hover-link-color:#ff5eac;--btn-hover-color:#6f2c8f;--transition-speed:.3s}a{color:var(--link-color);transition:color var(--transition-speed)ease-in-out;font-style:italic;text-decoration:none}a:hover{color:var(--hover-link-color);font-style:italic;text-decoration:underline}a:visited{color:var(--visited-link-color);font-style:italic;text-decoration:underline}.navbar{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background-color:#7b3c9bb3;border-radius:12px;padding:1rem;z-index:0!important;display:none!important;position:relative!important}.navbar .navbar-nav{flex-direction:column;gap:.5rem;display:flex}.navbar .nav-link{color:#fff;border-radius:12px;font-size:1rem}.navbar .nav-link:hover{background-color:var(--text-color-light);text-shadow:0 0 10px #fff;box-shadow:0 0 10px #ffffff80}.navbar-toggler{background:0 0;border:none;margin-left:auto;padding:.5rem;display:flex}.navbar-toggler-icon{background-color:var(--text-color-light);border-radius:2px;width:28px;height:3px;transition:all .3s;position:relative}.navbar-toggler-icon:before,.navbar-toggler-icon:after{content:"";background-color:var(--text-color-light);position:flex;border-radius:2px;width:100%;height:3px;transition:all .3s;left:0}.navbar-toggler-icon:before{top:-8px}.navbar-toggler-icon:after{top:8px}h1,h2,h3,h4,h5,h6{color:var(--white-color);text-shadow:0 0 10px #fff6;animation:1.5s infinite alternate pulseGlow}@keyframes pulseGlow{0%{text-shadow:0 0 10px #fff6}to{text-shadow:0 0 20px #fff}}.btn-primary{color:var(--text-color-light);word-wrap:break-word;background:#7b3c9bd9;border:none;border-radius:30px;max-width:100%;padding:.75rem 1.5rem;font-size:1.1rem;font-weight:600;box-shadow:0 4px 15px #b72bcc66}.btn-primary:hover{background:linear-gradient(135deg,#9a55bd,#793999);transform:scale(1.05);box-shadow:0 0 20px #b72bccb3}.glow-footer{-webkit-backdrop-filter:blur(15px);color:#fff;z-index:999;background:#7b3c9b33;border-top:2px solid #fff3;border-radius:25px 25px 0 0;justify-content:space-between;align-items:center;width:100%;padding:.2rem 1rem .2rem 2.5rem;display:flex;position:relative;box-shadow:0 0 25px #b72bcc66}.glow-footer .footer-content{box-sizing:border-box;flex-wrap:wrap;justify-content:space-between;align-items:center;width:100%;display:flex}.glow-footer .footer-nav{gap:15px;display:flex}.glow-footer .footer-nav a{color:#fffc;padding:5px 15px;font-size:14px;font-weight:700;text-decoration:none;transition:all .3s ease-in-out;position:relative}.glow-footer .footer-nav a:hover{color:#fff;text-shadow:0 0 10px #ffffffe6}.glow-footer .footer-nav a:before{content:"";background:linear-gradient(90deg,#ff5eac,#b65ce3);width:100%;height:2px;transition:transform .3s ease-in-out;position:absolute;bottom:-3px;left:0;transform:scaleX(0)}.glow-footer .footer-nav a:hover:before{transform:scaleX(1)}.glow-footer .footer-logo{text-align:center;align-items:center;gap:1rem;padding:0 2.5rem;display:flex}.glow-footer .footer-logo img{filter:drop-shadow(0 0 10px #fffc);height:40px}.glow-footer .footer-logo p{color:#ffffffb3;margin:5px 0 0;font-size:14px;font-weight:700}@media (max-width:766px){.glow-footer{visibility:hidden;opacity:0;height:0;overflow:hidden;display:none!important}}@media (min-width:767px) and (max-width:1023px){.glow-footer .footer-content{flex-direction:column;align-items:center;gap:1rem}.glow-footer .footer-nav{flex-wrap:wrap;justify-content:center}.glow-footer .footer-nav a{padding:6px 12px;font-size:14px}.glow-footer .footer-logo{text-align:center;align-items:center;margin-top:10px}}@media (min-width:1024px) and (max-width:1439px){.glow-footer .footer-content{flex-direction:row;justify-content:space-between;gap:2rem;padding:1.5rem 2rem}.glow-footer .footer-nav a{padding:8px 16px;font-size:15px}}@media (min-width:1440px){.glow-footer .footer-content{gap:3rem;padding:2rem 4rem}.glow-footer .footer-nav a{padding:10px 20px;font-size:16px}.glow-footer .footer-logo img{height:50px}}@media (max-width:420px){.navbar-toggler{display:flex!important}.navbar-collapse{flex-direction:column;align-items:center;width:100%;display:flex}.navbar-nav .nav-link{width:100%;padding:12px 20px;font-size:18px}.navbar-toggler.open .navbar-collapse{display:flex}.navbar-toggler.open .navbar-toggler-icon{transform:rotate(90deg)}}@media (min-width:421px) and (max-width:768px){.navbar-toggler{display:flex!important}.navbar-collapse{flex-direction:column;align-items:center;width:100%;display:flex}.navbar-nav{flex-direction:row;justify-content:center}.navbar-nav .nav-link{padding:12px 25px;font-size:18px}.navbar-toggler.open .navbar-collapse{display:flex}}@media (min-width:769px) and (max-width:1024px){.navbar-toggler{display:flex}.navbar-collapse{flex-direction:row;justify-content:space-between;align-items:center;display:flex}.navbar-nav{flex-direction:row;justify-content:center}.navbar-nav .nav-link{padding:14px 24px;font-size:16px}}@media (min-width:1025px) and (max-width:1280px){.navbar-toggler{display:flex}.navbar-collapse{flex-direction:row;justify-content:space-between;align-items:center;display:flex}.navbar-nav{flex-direction:row;justify-content:center}.navbar-nav .nav-link{padding:15px 25px;font-size:16px}}.collapse{visibility:collapse}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.top-\[50\%\]{top:50%}.top-\[calc\(theme\(spacing\.14\)\+theme\(spacing\.3\)\)\]{top:4.25rem}.left-\[50\%\]{left:50%}.z-40{z-index:40}.z-50{z-index:50}.col-span-1{grid-column:span 1/span 1}.col-span-3{grid-column:span 3/span 3}.container{width:100%}.mx-auto{margin-inline:auto}.mt-auto{margin-top:auto}.ml-auto{margin-left:auto}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.h-\[1px\]{height:1px}.h-full{height:100%}.h-px{height:1px}.max-h-\[75vh\]{max-height:75vh}.min-h-\[80px\]{min-height:80px}.min-h-screen{min-height:100vh}.w-\[1px\]{width:1px}.w-full{width:100%}.max-w-\[70\%\]{max-width:70%}.max-w-\[1200px\]{max-width:1200px}.min-w-\[8rem\]{min-width:8rem}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.translate-x-\[-50\%\]{--tw-translate-x:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-\[-50\%\]{--tw-translate-y:-50%;translate:var(--tw-translate-x)var(--tw-translate-y)}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.rounded-\[inherit\]{border-radius:inherit}.rounded-full{border-radius:3.40282e38px}.rounded-br-none{border-bottom-right-radius:0}.rounded-bl-none{border-bottom-left-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-t-transparent{border-top-color:#0000}.border-l-transparent{border-left-color:#0000}.bg-\[rgba\(55\,0\,179\,0\.36\)\]{background-color:#3700b35c}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-\[\#3609a7\]{--tw-gradient-from:#3609a7;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#5619bf\]{--tw-gradient-to:#5619bf;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.p-\[1px\]{padding:1px}.text-center{text-align:center}.text-right{text-align:right}.text-\[10px\]{font-size:10px}.leading-none{--tw-leading:1;line-height:1}.break-words{overflow-wrap:break-word}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.uppercase{text-transform:uppercase}.underline-offset-4{text-underline-offset:4px}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.shadow-\[0_0_12px_rgba\(139\,92\,246\,0\.8\)\]{--tw-shadow:0 0 12px var(--tw-shadow-color,#8b5cf6cc);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_20px_rgba\(139\,92\,246\,0\.8\)\]{--tw-shadow:0 0 20px var(--tw-shadow-color,#8b5cf6cc);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.drop-shadow-\[0_0_8px_rgba\(139\,92\,246\,0\.7\)\]{--tw-drop-shadow-size:drop-shadow(0 0 8px var(--tw-drop-shadow-color,#8b5cf6b3));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-\[0_0_8px_rgba\(255\,100\,100\,0\.8\)\]{--tw-drop-shadow-size:drop-shadow(0 0 8px var(--tw-drop-shadow-color,#ff6464cc));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-\[0_0_10px_rgba\(32\,201\,151\,0\.9\)\]{--tw-drop-shadow-size:drop-shadow(0 0 10px var(--tw-drop-shadow-color,#20c997e6));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-\[0_0_10px_rgba\(168\,85\,247\,0\.9\)\]{--tw-drop-shadow-size:drop-shadow(0 0 10px var(--tw-drop-shadow-color,#a855f7e6));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-\[0_0_10px_rgba\(236\,72\,153\,0\.8\)\]{--tw-drop-shadow-size:drop-shadow(0 0 10px var(--tw-drop-shadow-color,#ec4899cc));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-\[0_0_10px_rgba\(255\,100\,100\,0\.85\)\]{--tw-drop-shadow-size:drop-shadow(0 0 10px var(--tw-drop-shadow-color,#ff6464d9));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-\[15px\]{--tw-backdrop-blur:blur(15px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-saturate-\[150\%\]{--tw-backdrop-saturate:saturate(150%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,ease);transition-duration:var(--tw-duration,0s)}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}@media (hover:hover){.group-hover\:scale-105:is(:where(.group):hover *){--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}@media (hover:hover){.hover\:scale-\[1\.02\]:hover{scale:1.02}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-\[0_0_20px_rgba\(236\,72\,153\,0\.9\)\]:hover{--tw-shadow:0 0 20px var(--tw-shadow-color,#ec4899e6);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:brightness-110:hover{--tw-brightness:brightness(110%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.hover\:drop-shadow-\[0_0_12px_rgba\(255\,100\,100\,0\.8\)\]:hover{--tw-drop-shadow-size:drop-shadow(0 0 12px var(--tw-drop-shadow-color,#ff6464cc));--tw-drop-shadow:var(--tw-drop-shadow-size);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}@layer base{:root{--background:#fff;--foreground:#020817;--card:#fff;--card-foreground:#020817;--popover:#fff;--popover-foreground:#020817;--primary:#0f172a;--primary-foreground:#f8fafc;--secondary:#f1f5f9;--secondary-foreground:#0f172a;--muted:#f1f5f9;--muted-foreground:#64748b;--accent:#f1f5f9;--accent-foreground:#0f172a;--destructive:#ef4444;--destructive-foreground:#f8fafc;--border:#e2e8f0;--input:#e2e8f0;--ring:#020817;--radius:.5rem}.dark{--background:#020817;--foreground:#f8fafc;--card:#020817;--card-foreground:#f8fafc;--popover:#020817;--popover-foreground:#f8fafc;--primary:#f8fafc;--primary-foreground:#0f172a;--secondary:#1e293b;--secondary-foreground:#f8fafc;--muted:#1e293b;--muted-foreground:#94a3b8;--accent:#1e293b;--accent-foreground:#f8fafc;--destructive:#7f1d1d;--destructive-foreground:#f8fafc;--border:#1e293b;--input:#1e293b;--ring:#cbd5e1}*,h1,h2,h3,h4,h5,h6{font-family:Montserrat,sans-serif}.font-serif{font-family:Playfair Display,serif}}.text-gradient{color:#0000;-webkit-background-clip:text;background-clip:text}.aura-bg{position:relative;overflow:hidden}.aura-bg:before{content:"";z-index:-1;background:radial-gradient(circle,#8b5cf64d 0%,#ec489933 25%,#20c9971a 50%,#0000 75%);width:300%;height:300%;animation:10s ease-in-out infinite aura-glow;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--background)}::-webkit-scrollbar-thumb{background:var(--muted);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--muted-foreground)}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}div[style*="position: fixed"][style*="inset: 3.5rem"]{display:none!important}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}
