:root {
  --primary-dark: #0a0a0f;
  --primary-darker: #050510;
  --primary-medium: #1a0a2e;
  --primary-light: #2d1b69;
  --secondary-electric: #ff00ff;
  --accent-neon-pink: #ff0080;
  --accent-neon-purple: #8000ff;
  --accent-electric-blue: #00ffff;
  --accent-glow: #ff1493;
  --text-primary: #ffffff;
  --text-secondary: #e0e0ff;
  --text-light: #f5f5ff;
  --text-dark: #0a0a0f;
  --text-muted-light: #b0b0ff;
  --text-muted-dark: #8080ff;
  --background-light: #0f0a1a;
  --background-mid: #1a0a2e;
  --footer-bg: #050510;
  --footer-divider: rgba(255, 0, 128, 0.25);
  --footer-accent: rgba(255, 0, 128, 0.15);
  --cookie-panel-bg: #0a0a0f;
  --cookie-border: rgba(255, 0, 128, 0.2);
  --cookie-overlay: rgba(10, 10, 15, 0.85);
  --button-primary: #ff0080;
  --shadow-sm: 0 2px 8px rgba(255, 0, 128, 0.3);
  --shadow-md: 0 8px 24px rgba(255, 0, 128, 0.4);
  --shadow-lg: 0 16px 40px rgba(255, 0, 128, 0.5);
  --glow-pink: 0 0 20px rgba(255, 0, 128, 0.6);
  --glow-purple: 0 0 20px rgba(128, 0, 255, 0.6);
  --glow-blue: 0 0 20px rgba(0, 255, 255, 0.6);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  --transition-glow: all 0.5s ease-in-out;
  --spacing-unit: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 30%, var(--primary-medium) 70%, var(--primary-light) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    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, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--accent-neon-pink), var(--accent-neon-purple), var(--accent-electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: var(--glow-pink);
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    filter: drop-shadow(0 0 5px rgba(255, 0, 128, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8)) drop-shadow(0 0 30px rgba(128, 0, 255, 0.4));
  }
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-neon-pink), var(--accent-neon-purple));
  border-radius: 2px;
  box-shadow: var(--glow-pink);
  animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  from {
    box-shadow: 0 0 5px rgba(255, 0, 128, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.8), 0 0 25px rgba(128, 0, 255, 0.4);
  }
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
  color: var(--accent-neon-pink);
  text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.text-muted {
  color: var(--text-muted-dark) !important;
}

.bg-light {
  background-color: var(--background-light) !important;
  color: var(--text-dark) !important;
}

body.bg-light {
  background: linear-gradient(135deg, #0a192f 0%, #001f3f 50%, #0a2a4c 100%) !important;
  color: var(--text-primary) !important;
}

.bg-light .text-muted {
  color: var(--text-muted-light) !important;
}

.bg-dark,
.section-bg-2,
.section-bg-3 {
  color: var(--text-light);
}

.bg-dark .text-muted,
.section-bg-2 .text-muted,
.section-bg-3 .text-muted {
  color: var(--text-muted-dark) !important;
}

.section-bg-1 {
  color: var(--text-dark);
  box-shadow: inset 0 0 0 1px rgba(13, 27, 45, 0.04);
}

.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-dark);
}

.section-bg-1 p,
.section-bg-1 li,
.section-bg-1 span,
.section-bg-1 .lead {
  color: var(--text-muted-light);
}

.section-bg-2 {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  color: var(--text-light);
}

.section-bg-2 p,
.section-bg-2 li,
.section-bg-2 span,
.section-bg-2 .lead {
  color: var(--text-secondary);
}

.section-bg-3 {
  background: linear-gradient(135deg, rgba(10, 42, 76, 0.85) 0%, rgba(0, 31, 63, 0.95) 100%);
  color: var(--text-light);
}

.section-bg-3 p,
.section-bg-3 li,
.section-bg-3 span,
.section-bg-3 .lead {
  color: var(--text-secondary);
}

.bg-secondary {
  background-color: #1f3655 !important;
  color: var(--text-light) !important;
}

a {
  color: var(--accent-electric-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

a:hover {
  color: var(--accent-neon-pink);
  text-shadow: 0 0 8px rgba(255, 0, 128, 0.6);
}

.site-header {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 10, 46, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 0, 128, 0.2);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: var(--shadow-md);
  position: relative;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.05), transparent);
  animation: headerGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerGlow {
  0%, 100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.site-navbar {
  padding: 0;
}

.site-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, var(--accent-neon-pink), var(--accent-neon-purple), var(--accent-electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
  text-shadow: var(--glow-pink);
}

.site-brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

.site-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 0, 128, 0.4);
  filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.3));
  transition: var(--transition-smooth);
}

.site-brand-logo:hover {
  box-shadow: 0 4px 20px rgba(255, 0, 128, 0.6);
  filter: drop-shadow(0 0 12px rgba(255, 0, 128, 0.5));
  transform: scale(1.05);
}

.site-brand-text {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.site-nav-toggle {
  border: 1px solid rgba(255, 0, 128, 0.6);
  background: rgba(255, 0, 128, 0.1);
  padding: 0.5rem 0.75rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
}

.site-nav-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 128, 0.25);
  border-color: var(--accent-neon-pink);
}

.site-nav-toggle:hover {
  background: rgba(255, 0, 128, 0.18);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.site-nav-toggle .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='%23ff0080' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav-collapse {
  gap: 1.5rem;
}

.site-nav-actions {
  display: flex;
  align-items: center;
}

.site-nav-list {
  gap: 0.5rem;
}

.site-nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  position: relative;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-neon-pink), var(--accent-neon-purple));
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 0, 128, 0.6);
}

.site-nav-link:hover {
  color: var(--accent-neon-pink);
  background: rgba(255, 0, 128, 0.08);
  border-color: rgba(255, 0, 128, 0.3);
  box-shadow: 0 0 12px rgba(255, 0, 128, 0.2);
}

.site-nav-link:hover::after {
  width: 60%;
}

.site-nav-link.active {
  color: var(--accent-neon-pink);
  background: rgba(255, 0, 128, 0.12);
  box-shadow: 0 6px 16px rgba(255, 0, 128, 0.18);
  border-color: rgba(255, 0, 128, 0.4);
}

.site-nav-link.active::after {
  width: 70%;
}

.badge-18 {
  background: rgba(255, 0, 128, 0.18);
  border: 1px solid rgba(255, 0, 128, 0.6);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

@media (max-width: 991.98px) {
  .site-nav-collapse {
    align-items: flex-start;
    background: rgba(10, 10, 15, 0.96);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 0, 128, 0.2);
  }

  .site-nav-list {
    width: 100%;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    background: rgba(255, 0, 128, 0.05);
    padding: 0.75rem 1rem;
    border-color: rgba(255, 0, 128, 0.2);
  }

  .site-nav-link::after {
    display: none;
  }

  .badge-18 {
    width: 100%;
    text-align: center;
  }
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  perspective: 1000px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  filter: blur(1px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(128, 0, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
  filter: blur(1px);
}

.hero-bg-3 {
  position: absolute;
  top: 20%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite reverse;
  filter: blur(1px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(30px) translateX(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  animation: slideInUp 0.8s ease-out, glowPulse 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.4), 0 0 60px rgba(128, 0, 255, 0.2);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-neon-pink) 0%, var(--accent-neon-purple) 100%);
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-neon-pink), var(--accent-neon-purple));
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-neon-purple) 0%, var(--accent-electric-blue) 100%);
  box-shadow: 0 12px 32px rgba(255, 0, 128, 0.4);
  transform: translateY(-3px);
  color: white;
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-electric-blue);
  border: 2px solid var(--accent-electric-blue);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  color: var(--accent-neon-pink);
  border-color: var(--accent-neon-pink);
  box-shadow: 0 8px 24px rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-outline-primary {
  border: 2px solid var(--accent-turquoise);
  color: var(--accent-turquoise);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-turquoise);
  color: #001f3f;
  border-color: var(--accent-turquoise);
}

.card {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(255, 0, 128, 0.3);
  border-radius: 16px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 16px 40px rgba(255, 0, 128, 0.3), 0 0 20px rgba(255, 0, 128, 0.1);
  border-color: rgba(255, 0, 128, 0.5);
}

.card:hover::before {
  left: 100%;
}

.card-body {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.card-title {
  color: var(--accent-neon-pink);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid rgba(64, 224, 208, 0.1);
}

section {
  padding: 5rem 2rem;
  position: relative;
}

.section-light {
  background: linear-gradient(135deg, rgba(10, 42, 76, 0.5) 0%, rgba(26, 58, 90, 0.5) 100%);
}

.section-dark {
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.8) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  align-items: center;
}

.feature-box {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(0, 31, 63, 0.8) 100%);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(64, 224, 208, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  border-color: rgba(64, 224, 208, 0.5);
  box-shadow: 0 12px 32px rgba(64, 224, 208, 0.15);
  transform: translateY(-5px);
}

.feature-box:hover::before {
  top: -20%;
  right: -20%;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-turquoise);
  transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
  color: var(--accent-gold);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.site-footer {
  background: linear-gradient(135deg, var(--footer-bg) 0%, #030f1f 100%);
  border-top: 1px solid rgba(64, 224, 208, 0.2);
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
  color: var(--text-light);
  box-shadow: inset 0 1px 0 rgba(64, 224, 208, 0.08);
}

.site-footer h5,
.site-footer h6 {
  color: var(--accent-gold);
}

.footer-text {
  color: rgba(223, 233, 255, 0.82);
}

.footer-link {
  color: rgba(223, 233, 255, 0.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(64, 224, 208, 0.3);
  background: rgba(64, 224, 208, 0.08);
  color: var(--accent-turquoise);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-social-link:hover {
  background: var(--accent-turquoise);
  color: #00203a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(64, 224, 208, 0.25);
}

.footer-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.footer-divider {
  border-color: var(--footer-divider) !important;
  opacity: 1;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(64, 224, 208, 0.25);
  background: var(--footer-accent);
  transition: var(--transition-smooth);
  min-width: 120px;
}

.footer-logo-link img {
  max-height: 48px;
  width: auto;
  filter: brightness(1.05);
}

.footer-logo-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 12px 28px rgba(64, 224, 208, 0.2);
}

.regulator-logos {
  row-gap: 1.5rem !important;
}

.footer-schedule {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-schedule .d-block + .d-block {
  margin-top: 0.25rem;
}

.site-footer .badge {
  font-weight: 700;
  letter-spacing: 0.4px;
}

@media (max-width: 576px) {
  .site-footer {
    text-align: center;
  }

  .site-footer .regulator-logos {
    justify-content: center;
  }

  .site-footer .footer-social-link {
    margin: 0 auto;
  }
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid var(--accent-turquoise);
  color: var(--accent-turquoise);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
}

.badge:hover {
  background: var(--accent-turquoise);
  color: #001f3f;
}

.badge-gold {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.badge-gold:hover {
  background: var(--accent-gold);
  color: #001f3f;
}

.separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-gold));
  margin: 1.5rem auto;
  border-radius: 2px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-turquoise), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  color: var(--accent-turquoise);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.highlight-gold {
  color: var(--accent-gold);
  font-weight: 700;
}

.input-group input,
.form-control {
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(64, 224, 208, 0.2);
  color: var(--text-primary);
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.input-group input::placeholder,
.form-control::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.input-group input:focus,
.form-control:focus {
  background: rgba(10, 25, 47, 0.9);
  border-color: var(--accent-turquoise);
  box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25);
  outline: none;
  color: var(--text-primary);
}

.form-label {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-check-input {
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(64, 224, 208, 0.3);
  width: 20px;
  height: 20px;
}

.form-check-input:checked {
  background: var(--accent-turquoise);
  border-color: var(--accent-turquoise);
}

.form-check-input:focus {
  border-color: var(--accent-turquoise);
  box-shadow: 0 0 0 0.25rem rgba(64, 224, 208, 0.25);
}

.form-check-label {
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.alert {
  border: 1px solid;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-info {
  background: rgba(64, 224, 208, 0.1);
  border-color: rgba(64, 224, 208, 0.3);
  color: var(--accent-turquoise);
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  color: #4CAF50;
}

.alert-warning {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--accent-gold);
}

.alert-danger {
  background: rgba(244, 67, 54, 0.1);
  border-color: rgba(244, 67, 54, 0.3);
  color: #F44336;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(64, 224, 208, 0.2);
  border-top-color: var(--accent-turquoise);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
}

.loader span {
  width: 12px;
  height: 12px;
  background: var(--accent-turquoise);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(0, 31, 63, 0.95) 100%);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 12px;
}

.modal-header {
  border-bottom: 1px solid rgba(64, 224, 208, 0.1);
  padding: 1.5rem;
}

.modal-title {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-close {
  filter: invert(1) brightness(0.8);
}

.btn-close:hover {
  filter: invert(1) brightness(1);
}

.pagination .page-link {
  background: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(64, 224, 208, 0.2);
  color: var(--accent-turquoise);
  transition: var(--transition-smooth);
}

.pagination .page-link:hover {
  background: rgba(64, 224, 208, 0.2);
  border-color: var(--accent-turquoise);
  color: var(--accent-gold);
}

.pagination .page-item.active .page-link {
  background: var(--accent-turquoise);
  border-color: var(--accent-turquoise);
  color: #001f3f;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item {
  color: var(--text-secondary);
}

.breadcrumb-item.active {
  color: var(--accent-turquoise);
}

.breadcrumb-item a {
  color: var(--accent-turquoise);
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.nav-tabs {
  border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.nav-tabs .nav-link {
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.nav-tabs .nav-link:hover {
  color: var(--accent-turquoise);
  border-bottom-color: rgba(64, 224, 208, 0.3);
}

.nav-tabs .nav-link.active {
  color: var(--accent-turquoise);
  border-bottom-color: var(--accent-turquoise);
  background: transparent;
}

.tab-content {
  padding: 1.5rem 0;
}

.tab-pane {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.table {
  color: var(--text-secondary);
  border-color: rgba(64, 224, 208, 0.1);
}

.table thead th {
  color: var(--accent-turquoise);
  border-bottom: 2px solid rgba(64, 224, 208, 0.2);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(10, 25, 47, 0.5);
}

.table tbody tr {
  transition: var(--transition-smooth);
}

.table tbody tr:hover {
  background: rgba(64, 224, 208, 0.05);
}

.table tbody td {
  border-color: rgba(64, 224, 208, 0.1);
  vertical-align: middle;
}

.list-group-item {
  background: rgba(10, 25, 47, 0.5);
  border: 1px solid rgba(64, 224, 208, 0.1);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.list-group-item:hover {
  background: rgba(10, 25, 47, 0.8);
  border-color: rgba(64, 224, 208, 0.3);
  color: var(--accent-turquoise);
}

.list-group-item.active {
  background: var(--accent-turquoise);
  border-color: var(--accent-turquoise);
  color: #001f3f;
}

.dropdown-menu {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(0, 31, 63, 0.95) 100%);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.dropdown-item {
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(64, 224, 208, 0.15);
  color: var(--accent-turquoise);
}

.dropdown-divider {
  border-color: rgba(64, 224, 208, 0.1);
}

.progress {
  background: rgba(10, 25, 47, 0.7);
  border-radius: 8px;
  height: 8px;
}

.progress-bar {
  background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-gold));
  border-radius: 8px;
}



.cookie-consent-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  background: radial-gradient(circle at center, rgba(10, 25, 47, 0.82) 0%, rgba(3, 14, 28, 0.92) 45%, rgba(3, 14, 28, 0.96) 100%);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-consent-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-backdrop[hidden] {
  display: none;
}

.cookie-consent-panel {
  width: min(540px, 92%);
  background: var(--cookie-panel-bg);
  border-radius: 16px;
  border: 1px solid var(--cookie-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: var(--text-light);
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.cookie-consent-backdrop.visible .cookie-consent-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cookie-consent-body {
  padding: 2rem;
}

.cookie-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.cookie-description {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.cookie-link {
  color: var(--accent-turquoise);
  text-decoration: underline;
  text-decoration-color: rgba(64, 224, 208, 0.4);
}

.cookie-link:hover {
  color: var(--accent-gold);
  text-decoration-color: var(--accent-gold);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-cookie-primary,
.btn-cookie-secondary,
.btn-cookie-tertiary {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.6rem 1.8rem;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.btn-cookie-primary {
  background: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--accent-gold) 100%);
  color: #00203a;
  border: none;
}

.btn-cookie-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(64, 224, 208, 0.35);
}

.btn-cookie-secondary {
  background: transparent;
  border: 1px solid rgba(64, 224, 208, 0.45);
  color: var(--accent-turquoise);
}

.btn-cookie-secondary:hover {
  background: rgba(64, 224, 208, 0.12);
}

.btn-cookie-tertiary {
  background: rgba(64, 224, 208, 0.12);
  border: 1px solid rgba(64, 224, 208, 0.35);
  color: var(--accent-turquoise);
}

.btn-cookie-tertiary:hover {
  border-color: rgba(255, 215, 0, 0.45);
  color: var(--accent-gold);
}

.cookie-preferences {
  border-top: 1px solid var(--cookie-border);
  background: rgba(0, 17, 34, 0.45);
  padding: 1.5rem 2rem 2rem;
  display: grid;
  gap: 1.25rem;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(64, 224, 208, 0.08);
  border: 1px solid rgba(64, 224, 208, 0.15);
}

.cookie-category-title {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.cookie-category-text {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-preferences .badge {
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

@media (max-width: 576px) {
  .cookie-consent-body {
    padding: 1.5rem;
  }

  .cookie-preferences {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .cookie-category {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-preferences-actions {
    justify-content: center;
  }

  .cookie-consent-panel {
    width: 100%;
    border-radius: 12px;
    transform: translateY(32px) scale(0.94);
  }

  .cookie-consent-backdrop.visible .cookie-consent-panel {
    transform: translateY(0) scale(1);
  }
}

body.cookie-consent-open {
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-neon-pink), transparent);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-electric-blue);
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
}

.parallax-element {
  will-change: transform;
}

.glow-on-hover {
  transition: var(--transition-glow);
}

.glow-on-hover:hover {
  box-shadow: var(--glow-pink);
  filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.5));
}

.neon-text {
  color: var(--accent-neon-pink);
  text-shadow:
    0 0 5px rgba(255, 0, 128, 0.5),
    0 0 10px rgba(255, 0, 128, 0.5),
    0 0 15px rgba(255, 0, 128, 0.5),
    0 0 20px rgba(255, 0, 128, 0.5);
  animation: neon-flicker 2s infinite alternate;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 5px rgba(255, 0, 128, 0.5),
      0 0 10px rgba(255, 0, 128, 0.5),
      0 0 15px rgba(255, 0, 128, 0.5),
      0 0 20px rgba(255, 0, 128, 0.5);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.03;
}

.matrix-bg canvas {
  display: block;
}

.particle-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.wave-effect {
  position: relative;
  overflow: hidden;
}

.wave-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
  animation: wave 3s infinite;
}

@keyframes wave {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.glass-effect {
  backdrop-filter: blur(20px);
  background: rgba(26, 10, 46, 0.8);
  border: 1px solid rgba(255, 0, 128, 0.2);
}

.magnetic-hover {
  transition: transform 0.3s ease;
}

.magnetic-hover:hover {
  transform: scale(1.05) rotate(2deg);
}

.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--accent-neon-pink);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-neon-pink) }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-animation {
  animation: staggerIn 0.8s ease-out;
}

@keyframes staggerIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}