:root {
  --primary-color: #0a0a0a;
  --secondary-color: #1a1a1a;
  --background-color: #000000;
  --footer-bg-color: #0f0f0f;
  --button-color: #ff0080;
  --accent-color-pink: #ff0080;
  --accent-color-purple: #8000ff;
  --accent-color-cyan: #00ffff;
  --accent-color-green: #00ff80;
  --text-color-light: #ffffff;
  --text-color-dark: #cccccc;
  --section-bg-1: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
  --section-bg-2: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --section-bg-3: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  --section-bg-4: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --section-bg-5: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --section-bg-6: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 2rem;

  --shadow-sm: 0 4px 8px rgba(255, 0, 128, 0.2);
  --shadow-md: 0 8px 20px rgba(255, 0, 128, 0.3);
  --shadow-hover: 0 12px 30px rgba(255, 0, 128, 0.4);
  --glow-sm: 0 0 10px rgba(255, 0, 128, 0.3);
  --glow-md: 0 0 20px rgba(255, 0, 128, 0.5);

  --transition-speed: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --font-family-headings: 'Orbitron', sans-serif;
  --font-family-body: 'Rajdhani', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-color-light);
  background: var(--background-color);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 128, 0.1) 0%, transparent 50%);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 30%, rgba(255, 0, 128, 0.03) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(128, 0, 255, 0.03) 50%, transparent 70%);
  animation: backgroundShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes backgroundShift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(45deg, var(--accent-color-pink), var(--accent-color-cyan), var(--accent-color-purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: var(--glow-sm);
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent-color-green);
  text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: rgba(230, 236, 255, 0.85);
}

a {
  color: var(--accent-color-turquoise);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-color-yellow);
  text-decoration: none;
}

/* Custom Bootstrap Overrides & Enhancements */
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .container-fluid {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Navigation Bar */
.navbar {
  background: rgba(10, 10, 10, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 0, 128, 0.2);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 0, 128, 0.1);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
  animation: navbarGlow 3s infinite;
}

@keyframes navbarGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.navbar-brand {
  color: var(--accent-color-pink) !important;
  font-family: var(--font-family-headings);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
  position: relative;
  z-index: 2;
}

.navbar-brand:hover {
  color: var(--accent-color-cyan) !important;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  transform: scale(1.05);
  transition: all var(--transition-speed);
}

.navbar-nav .nav-link {
  color: var(--text-color-light) !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0.8rem;
  position: relative;
  transition: all var(--transition-speed);
  font-family: var(--font-family-headings);
  letter-spacing: 0.05em;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color-pink), var(--accent-color-cyan));
  left: 0;
  bottom: -5px;
  transition: width var(--transition-speed);
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color-cyan) !important;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary,
.btn-secondary {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1.1rem;
  --bs-btn-border-radius: var(--border-radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: var(--font-family-headings);
  backdrop-filter: blur(10px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color-pink), var(--accent-color-purple));
  color: var(--text-color-light);
  box-shadow: var(--glow-md);
  border: 2px solid var(--accent-color-pink);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-color-purple), var(--accent-color-cyan));
  color: var(--text-color-light);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--glow-md), 0 15px 35px rgba(255, 0, 128, 0.4);
  border-color: var(--accent-color-cyan);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color-cyan);
  border: 2px solid var(--accent-color-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-color-cyan);
  color: var(--background-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

/* Cards & Sections */
.card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 128, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 0, 128, 0.1);
  padding: 2rem;
  transition: all var(--transition-speed);
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color-pink), var(--accent-color-cyan), var(--accent-color-purple));
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.card:hover::before {
  opacity: 1;
}

.card .card-title {
  color: var(--accent-color-pink);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.card .card-text,
.card .text-muted {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 0, 128, 0.3),
    0 0 60px rgba(255, 0, 128, 0.1);
  border-color: rgba(255, 0, 128, 0.4);
}

.section-bg-primary {
  background-color: var(--section-bg-1);
}

.section-bg-secondary {
  background-color: var(--section-bg-2);
}

.section-bg-dark {
  background-color: var(--section-bg-3);
}

.section-bg-accent {
  background-image: linear-gradient(45deg, var(--section-bg-4), var(--section-bg-5));
}

.section-bg-1 {
  background: var(--section-bg-1);
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

.section-bg-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(128, 0, 255, 0.1) 0%, transparent 50%);
  animation: sectionBgFloat 15s ease-in-out infinite;
}

@keyframes sectionBgFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.section-bg-1 h1,
.section-bg-1 h2,
.section-bg-1 h3,
.section-bg-1 h4,
.section-bg-1 h5,
.section-bg-1 h6 {
  color: var(--text-color-light);
  position: relative;
  z-index: 2;
}

.section-bg-1 p,
.section-bg-1 .lead {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.section-bg-2 {
  background: var(--section-bg-2);
  color: var(--text-color-light);
  position: relative;
}

.section-bg-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
}

.section-bg-2 h1,
.section-bg-2 h2,
.section-bg-2 h3,
.section-bg-2 h4,
.section-bg-2 h5,
.section-bg-2 h6 {
  color: var(--accent-color-cyan);
  position: relative;
  z-index: 2;
}

.section-bg-2 p,
.section-bg-2 .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  position: relative;
  z-index: 2;
}

.section-bg-3 {
  background: var(--section-bg-3);
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

.section-bg-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 255, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  animation: sectionBgPulse 10s ease-in-out infinite;
}

@keyframes sectionBgPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.section-bg-3 p,
.section-bg-3 .text-white-50 {
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background: var(--footer-bg-color);
  background-image:
    linear-gradient(135deg, var(--footer-bg-color) 0%, #0a0a0a 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  color: var(--text-color-light);
  padding: 3rem 0;
  font-size: 0.9rem;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 0, 128, 0.2);
}

.footer h5 {
  color: var(--accent-color-pink);
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
  font-weight: 700;
}

.footer i {
  color: var(--accent-color-cyan);
}

.footer a {
  color: var(--accent-color-cyan);
  text-decoration: none;
  transition: all var(--transition-speed);
}

.footer a:hover {
  color: var(--accent-color-pink);
  text-shadow: 0 0 8px rgba(255, 0, 128, 0.6);
}

.footer .btn {
  background: linear-gradient(135deg, var(--accent-color-pink), var(--accent-color-purple));
  border: none;
  color: var(--text-color-light);
  font-weight: 600;
  box-shadow: var(--glow-sm);
  transition: all var(--transition-speed);
}

.footer .btn:hover {
  background: linear-gradient(135deg, var(--accent-color-purple), var(--accent-color-cyan));
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.footer hr {
  border-color: rgba(255, 0, 128, 0.3);
  opacity: 0.5;
}

.footer-regulators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.footer-regulators a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
}

.footer-regulators a:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.footer-regulators img,
.footer-regulators .regulator-logo {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.bg-light,
.bg-light-gray {
  background-color: #ffffff !important;
  color: var(--text-color-dark) !important;
}

.bg-light p,
.bg-light span,
.bg-light li,
.bg-light .card-title,
.bg-light .card-text,
.bg-light .text-muted,
.bg-light-gray p,
.bg-light-gray span,
.bg-light-gray li,
.bg-light-gray .card-title,
.bg-light-gray .card-text,
.bg-light-gray .text-muted {
  color: var(--text-color-dark) !important;
}

.card.bg-light,
.card.bg-light-gray,
.section-bg-2 .card {
  background-color: #ffffff !important;
  color: var(--text-color-dark) !important;
  box-shadow: var(--shadow-md);
}

.card.bg-light .card-text,
.card.bg-light .text-muted,
.card.bg-light-gray .card-text,
.card.bg-light-gray .text-muted,
.section-bg-2 .card .card-text,
.section-bg-2 .card .text-muted {
  color: #445377 !important;
}

.list-group-item.bg-light,
.list-group-item.bg-light-gray {
  background-color: #ffffff !important;
  color: var(--text-color-dark) !important;
}

/* Custom Elements & Effects */

/* Hero Section Specifics */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-color) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(var(--accent-color-turquoise-rgb), 0.1) 0%, transparent 70%);
  animation: pulse-bg 15s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes pulse-bg {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.hero-section h1 {
  color: var(--text-color-light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-section p {
  color: var(--text-color-dark);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.25rem;
}

/* Glassmorphism Effect for certain elements (e.g., info boxes) */
.glass-panel {
  background: rgba(43, 60, 110, 0.2); /* secondary-color with transparency */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 2rem;
  color: var(--text-color-light);
  transition: all var(--transition-speed);
}

.glass-panel:hover {
  background: rgba(43, 60, 110, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Animated Scroll Indicator (Example) */
.scroll-down-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 40px;
  height: 40px;
  border-left: 3px solid var(--accent-color-yellow);
  border-bottom: 3px solid var(--accent-color-yellow);
  transform: rotate(-45deg);
  animation: scroll-arrow 1.5s infinite;
  opacity: 0.7;
  cursor: pointer;
  z-index: 10;
}

@keyframes scroll-arrow {
  0% { transform: translate(-50%, -10px) rotate(-45deg); opacity: 0.7; }
  50% { transform: translate(-50%, 10px) rotate(-45deg); opacity: 1; }
  100% { transform: translate(-50%, -10px) rotate(-45deg); opacity: 0.7; }
}

/* Interactive Elements for Alpine.js */
[x-cloak] {
  display: none !important;
}

.fade-in-transition {
  transition: opacity 0.5s ease-out;
}

.fade-out-transition {
  transition: opacity 0.5s ease-in;
}

/* Utility classes for backgrounds */
.bg-primary-dark {
  background-color: var(--primary-color) !important;
}

.bg-secondary-dark {
  background-color: var(--secondary-color) !important;
}

.bg-background-dark {
  background-color: var(--background-color) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar {
    backdrop-filter: blur(15px);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link {
    padding-left: 1rem;
    border-bottom: 1px solid rgba(255, 0, 128, 0.2);
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 6rem 0;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .card {
    margin-bottom: 2rem;
  }

  .glass-morphism {
    backdrop-filter: blur(5px);
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .glass-morphism {
    padding: 1rem !important;
  }

  .cyber-glow {
    margin: 0.5rem;
  }

  .floating-particles::after {
    background-size: 30px 30px, 40px 40px, 20px 20px;
  }

  .neon-text {
    font-size: 0.9rem;
  }
}


/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
  z-index: 1060;
  backdrop-filter: blur(12px);
  background: rgba(8, 16, 38, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner-custom p {
  color: rgba(230, 236, 255, 0.85);
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner-custom .btn {
  min-width: 110px;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
}

.cookie-banner-custom .btn-outline-light {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cookie-banner-custom .btn-outline-light:hover {
  background-color: #FFFFFF;
  color: #081026;
}

.cookie-settings-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 360px;
  max-width: calc(100% - 3rem);
  background: #0F1C3B;
  color: var(--text-color-light);
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  padding: 1.75rem;
  z-index: 1070;
}

.cookie-settings-panel h3 {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.cookie-settings-panel p {
  color: rgba(230, 236, 255, 0.78);
}

.cookie-settings-panel .form-check-label {
  color: rgba(230, 236, 255, 0.85);
  font-weight: 500;
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1065;
}

/* New Cyberpunk Components */
.cyber-glow {
  position: relative;
}

.cyber-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color-pink), var(--accent-color-cyan), var(--accent-color-purple), var(--accent-color-green));
  background-size: 400% 400%;
  animation: cyberBorder 3s ease-in-out infinite;
  border-radius: inherit;
  z-index: -1;
  filter: blur(1px);
}

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

.neon-text {
  color: var(--accent-color-cyan);
  text-shadow:
    0 0 5px rgba(0, 255, 255, 0.5),
    0 0 10px rgba(0, 255, 255, 0.5),
    0 0 15px rgba(0, 255, 255, 0.5),
    0 0 20px rgba(0, 255, 255, 0.3);
  animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.floating-particles {
  position: relative;
  overflow: hidden;
}

.floating-particles::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, var(--accent-color-pink) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--accent-color-cyan) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, var(--accent-color-purple) 1px, transparent 1px);
  background-size: 50px 50px, 70px 70px, 30px 30px;
  animation: particleFloat 20s linear infinite;
  pointer-events: none;
  opacity: 0.1;
}

@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

.glass-morphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
}

.hologram-effect {
  background: linear-gradient(135deg,
    rgba(255, 0, 128, 0.1),
    rgba(128, 0, 255, 0.1),
    rgba(0, 255, 128, 0.1));
  position: relative;
  overflow: hidden;
}

.hologram-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent);
  animation: hologramScan 3s infinite;
}

@keyframes hologramScan {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

@media (max-width: 575.98px) {
  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-custom .btn {
    flex: 1 1 auto;
  }

  .cookie-settings-panel {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }
}