:root {
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff88;
  --neon-purple: #8a2be2;
  --neon-blue: #0066ff;
  --neon-orange: #ff6600;
  --dark-bg-1: #0a0a0a;
  --dark-bg-2: #111111;
  --dark-bg-3: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-glow: rgba(0, 255, 255, 0.8);
  --border-color: rgba(0, 255, 255, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
  --shadow-glow-strong: 0 0 40px rgba(0, 255, 255, 0.6);
  --gradient-1: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  --gradient-2: linear-gradient(135deg, var(--neon-green), var(--neon-purple));
  --gradient-3: linear-gradient(135deg, var(--neon-blue), var(--neon-orange));
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.text-dark {
  color: #ffffff !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: #ffffff00 !important;
}
body {
  background: var(--dark-bg-1);
  color: var(--text-primary);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  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% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.1) 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.2;
  color: var(--text-primary);
  text-shadow: var(--shadow-glow);
}

h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  font-weight: 900;
  text-shadow: var(--shadow-glow-strong);
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 2px;
  box-shadow: var(--shadow-glow-strong);
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
  box-shadow: var(--shadow-glow);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.25rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

p {
  margin-bottom: 1rem;
  opacity: 0.95;
  font-weight: 400;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--link-hover);
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-1);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-glow-strong);
  transition: var(--transition-smooth);
}

header:hover {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  text-shadow: var(--shadow-glow-strong);
  position: relative;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: scale(1.05) rotate(1deg);
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.navbar-brand:hover::before {
  opacity: 0.2;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 600;
  margin: 0 1rem;
  position: relative;
  transition: var(--transition-fast);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: var(--transition-fast);
  z-index: -1;
}

.nav-link:hover {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover::after {
  opacity: 0.1;
}

.nav-link.active {
  color: var(--neon-cyan) !important;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.nav-link.active::before {
  width: 100%;
}

.btn {
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 140px;
  z-index: 1;
  pointer-events: auto;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn span {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

a.btn,
a.btn * {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-primary);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-glow);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
  border-color: var(--neon-pink);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.btn-secondary {
  background: rgba(26, 26, 26, 0.8);
  color: var(--text-secondary);
  border-color: var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn-success {
  background: var(--gradient-2);
  color: var(--text-primary);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-success:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-light {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: transparent;
  box-shadow: var(--shadow-glow);
}

.btn-outline-light:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--text-primary);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border: none;
  box-shadow: none;
}

.btn-link:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
  transform: none;
}

.card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(17, 17, 17, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.card:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
  border-color: var(--neon-cyan);
}

.card:hover::before {
  opacity: 0.1;
}

.card-body {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-glow);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.card:hover .card-text {
  color: var(--text-primary);
}

.card-header {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(32, 201, 151, 0.15) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
}

.container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .container-fluid > .row {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-1 {
  background: linear-gradient(135deg, var(--dark-bg-1) 0%, var(--dark-bg-2) 100%);
  position: relative;
}

.section-bg-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,0,255,0.1)"/><circle cx="50" cy="50" r="0.5" fill="rgba(0,255,136,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.section-bg-2 {
  background: linear-gradient(135deg, var(--dark-bg-2) 0%, var(--dark-bg-3) 100%);
}

.section-bg-2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 68,58 78,88 50,70 22,88 32,58 10,40 40,40" fill="rgba(138,43,226,0.05)"/></svg>');
  opacity: 0.2;
  animation: float 25s ease-in-out infinite reverse;
}

.section-bg-3 {
  background: linear-gradient(135deg, var(--dark-bg-3) 0%, var(--dark-bg-1) 100%);
}

.section-bg-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="45" y="45" width="10" height="10" fill="rgba(255,102,0,0.05)" transform="rotate(45 50 50)"/></svg>');
  opacity: 0.25;
  animation: float 30s ease-in-out infinite;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title p {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.8);
  margin-top: 1rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
  color: rgba(248, 249, 250, 0.5);
}

.form-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.form-check-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.form-check-input:checked {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  margin-top: 4rem;
}

footer a {
  color: var(--primary);
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent-1);
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-1);
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: var(--accent-1);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-2) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.badge-warning {
  background: linear-gradient(135deg, var(--button-color) 0%, #ffb300 100%);
  color: #000;
}

.badge-success {
  background: linear-gradient(135deg, var(--accent-2) 0%, #17a2b8 100%);
  color: white;
}

.list-group-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transition: var(--transition);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.list-group-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  padding-left: 1.75rem;
}

.list-group-item.active {
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  border-color: var(--primary);
}

.pagination .page-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  transition: var(--transition);
  border-radius: var(--radius-md);
}

.pagination .page-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  border-color: var(--primary);
}

.modal-content {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  color: var(--text-primary);
}

.nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-tabs .nav-link {
  color: rgba(248, 249, 250, 0.7);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}

.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary);
  color: var(--text-primary);
}

.nav-tabs .nav-link.active {
  background: transparent;
  border-bottom-color: var(--accent-1);
  color: var(--accent-1);
  font-weight: 700;
}

.tab-content {
  padding: 2rem 0;
}

.tab-pane {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  backdrop-filter: blur(5px);
}

.alert-info {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.3);
}

.alert-success {
  background: rgba(32, 201, 151, 0.15);
  border-color: rgba(32, 201, 151, 0.3);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
  color: var(--text-primary);
}

.alert-danger {
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.3);
}

.progress {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  height: 6px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--accent-1));
  box-shadow: var(--shadow-sm);
}

.spinner-border {
  color: var(--primary);
  border-width: 3px;
}

.spinner-grow {
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
}

table {
  color: var(--text-primary);
}

.table {
  border-color: rgba(255, 255, 255, 0.1);
}

.table thead th {
  background: rgba(0, 123, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-1);
}

.table tbody td {
  border-color: rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.table tbody tr:hover {
  background: rgba(0, 123, 255, 0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.dropdown-menu {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.dropdown-item {
  color: var(--text-primary);
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(0, 123, 255, 0.2);
  color: var(--accent-1);
}

.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.tooltip-inner {
  background: rgba(0, 0, 0, 0.9);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.popover {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.popover-header {
  background: rgba(0, 123, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-1);
  font-weight: 700;
}

.popover-body {
  color: var(--text-primary);
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-item {
  color: rgba(248, 249, 250, 0.7);
}

.breadcrumb-item.active {
  color: var(--accent-1);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--primary);
}

.breadcrumb-item a:hover {
  color: var(--link-hover);
}

.input-group-text {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.input-group .form-control {
  border-radius: var(--radius-md);
}

.input-group-text {
  border-radius: var(--radius-md);
}

.offcanvas {
  background: linear-gradient(135deg, var(--background) 0%, var(--background-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
  color: var(--text-primary);
  font-weight: 700;
}

.btn-close {
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.7;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.carousel-indicators [data-bs-target].active {
  background: var(--accent-1);
  width: 12px;
  height: 12px;
}

.custom-section {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  perspective: 1000px;
}

.cursor-glow {
  pointer-events: none !important;
  z-index: -1 !important;
}

.section-bg-2 .card,
.section-bg-2 .card-body,
.section-bg-2 .d-flex.gap-2 {
  position: relative !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

.section-bg-2 a[data-cta-button],
.section-bg-2 .btn.btn-primary[href*="betsson"],
.section-bg-2 .btn.btn-primary[href*="betwarrior"],
.section-bg-2 .btn.btn-outline-light[href*="plataformas"] {
  position: relative !important;
  z-index: 10000 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: inline-block !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
}

.section-bg-2 .btn span {
  position: relative !important;
  z-index: 10001 !important;
  pointer-events: none !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(0, 255, 136, 0.15) 0%, transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: var(--gradient-1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  animation: float 10s ease-in-out infinite;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  transform-style: preserve-3d;
}

.hero h1 {
  margin-bottom: 2rem;
  animation: slideInDown 1s ease-out;
  text-shadow: var(--shadow-glow-strong);
  transform: translateZ(50px);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  animation: slideInUp 1s ease-out 0.3s both;
  transform: translateZ(30px);
  line-height: 1.8;
}

.hero .btn {
  animation: slideInUp 1s ease-out 0.6s both;
  transform: translateZ(40px);
  margin: 0 1rem;
}

.hero .row {
  align-items: center;
  gap: 4rem;
}

.hero .col-lg-6 {
  transform-style: preserve-3d;
}

.hero .col-lg-6:first-child {
  animation: slideInLeft 1.2s ease-out 0.2s both;
  transform: translateZ(20px);
}

.hero .col-lg-6:last-child {
  animation: slideInRight 1.2s ease-out 0.4s both;
  transform: translateZ(20px);
}

.hero img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow-strong);
  transition: var(--transition-smooth);
  border: 2px solid var(--neon-cyan);
}

.hero img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.6);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: brightness(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.2) hue-rotate(10deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 0.5;
  }
}

.floating-particle {
  animation: float-particle 15s ease-in-out infinite;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent-2));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.2) 0%, rgba(15, 15, 28, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}



/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
    z-index: 1060;
    backdrop-filter: blur(10px);
}

.cookie-banner-custom .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Regulator logos hover effects */
.opacity-75 {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}
.text-muted {
  color: #ffffff !important;
}