@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Mono:wght@400;700&display=swap');

:root {
  --primary: #34006A;
  --secondary: #AC1C7A;
  --bg-dark: #0D001F;
  --bg-darker: #080014;
  --bg-section-1: #12002A;
  --bg-section-2: #1C003D;
  --bg-section-3: #260050;
  --bg-section-4: #0D001F;
  --bg-section-5: #0a001a;
  --btn-color: #6C1C7A;
  --accent-star: #FFD700;
  --accent-glow: #00D9FF;
  --text-light: #F0F0FF;
  --text-muted: #D0D0E8;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(108, 28, 122, 0.15);
  --shadow-md: 0 8px 24px rgba(108, 28, 122, 0.25);
  --shadow-lg: 0 16px 48px rgba(172, 28, 122, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section-1) 25%, var(--bg-darker) 50%, var(--bg-section-5) 75%, var(--bg-dark) 100%);
  background-attachment: fixed;
  color: var(--text-light);
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #FFD700, rgba(255, 215, 0, 0)),
    radial-gradient(2px 2px at 60px 70px, #00D9FF, rgba(0, 217, 255, 0)),
    radial-gradient(1px 1px at 50px 50px, #E8E8FF, rgba(232, 232, 255, 0)),
    radial-gradient(1px 1px at 130px 80px, #AC1C7A, rgba(172, 28, 122, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(172, 28, 122, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(52, 0, 106, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent-glow), var(--secondary), var(--accent-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-glow), var(--secondary));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--accent-glow);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-glow), var(--secondary));
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: var(--accent-star);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.container {
  position: relative;
  z-index: 2;
}

.btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
}

.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;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--btn-color));
  color: white;
  border-color: var(--accent-glow);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--btn-color), var(--secondary));
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.6), inset 0 0 20px rgba(0, 217, 255, 0.1);
  transform: translateY(-2px);
  color: white;
}

.btn-primary:focus {
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #8B1560);
  color: white;
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(172, 28, 122, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #8B1560, var(--primary));
  box-shadow: 0 0 25px rgba(172, 28, 122, 0.6);
  transform: translateY(-2px);
  color: white;
}

.btn-outline-primary {
  color: var(--accent-glow);
  border-color: var(--accent-glow);
  background: transparent;
}

.btn-outline-primary:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--accent-star);
  color: var(--accent-star);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.card {
  background: linear-gradient(135deg, rgba(18, 0, 42, 0.7), rgba(28, 0, 61, 0.5));
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 217, 255, 0.15), transparent 30%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(172, 28, 122, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  border-color: rgba(0, 217, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3), 0 0 40px rgba(0, 217, 255, 0.2), inset 0 0 30px rgba(0, 217, 255, 0.1);
  transform: translateY(-12px) rotateX(2deg) rotateY(-2deg) scale(1.02);
}

.card:hover::before {
  opacity: 1;
  transform: rotate(180deg);
}

.card:hover::after {
  opacity: 1;
}

.card-img-top {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.9) contrast(1.1);
}

.card:hover .card-img-top {
  transform: scale(1.15) translateZ(20px);
  filter: brightness(1.1) contrast(1.2);
}

.card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(18, 0, 42, 0.3));
}

.card-title {
  transition: all 0.4s ease;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.card:hover .card-title {
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 30px rgba(0, 217, 255, 0.3);
  transform: translateX(5px);
}

.card-header {
  background: linear-gradient(135deg, rgba(52, 0, 106, 0.5), rgba(108, 28, 122, 0.3));
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-title {
  color: var(--accent-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-text {
  color: var(--text-muted);
}

.badge {
  background: linear-gradient(135deg, var(--primary), var(--btn-color));
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.badge-secondary {
  background: linear-gradient(135deg, var(--secondary), #8B1560);
  box-shadow: 0 0 10px rgba(172, 28, 122, 0.4);
}

.badge-accent {
  background: linear-gradient(135deg, var(--accent-glow), #00B8D4);
  color: var(--bg-dark);
}

.form-control {
  background: rgba(18, 0, 42, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-family: 'Space Mono', monospace;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: rgba(208, 208, 232, 0.7);
}

.form-control:focus {
  background: rgba(18, 0, 42, 0.7);
  border-color: var(--accent-glow);
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.05);
}

.form-label {
  color: var(--text-light);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.nav-link {
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-glow), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-glow);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar {
  background: linear-gradient(135deg, rgba(13, 0, 31, 0.8), rgba(8, 0, 20, 0.9));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 100;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent-glow), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.section-1 {
  background: linear-gradient(135deg, var(--bg-section-1) 0%, var(--bg-section-2) 100%);
}

.section-2 {
  background: linear-gradient(135deg, var(--bg-section-2) 0%, var(--bg-section-3) 100%);
}

.section-3 {
  background: linear-gradient(135deg, var(--bg-section-3) 0%, var(--bg-section-4) 100%);
}

.section-4 {
  background: linear-gradient(135deg, var(--bg-section-4) 0%, var(--bg-section-5) 100%);
}

.section-5 {
  background: linear-gradient(135deg, var(--bg-section-5) 0%, var(--bg-section-1) 100%);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(172, 28, 122, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-1:first-of-type {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  will-change: transform;
}

.section-bg-1:first-of-type .position-relative {
  min-height: 100vh !important;
  width: 100%;
  will-change: transform;
}

.section-bg-1:first-of-type img {
  transform: scale(1.1) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.section-bg-1:first-of-type::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 15%;
  right: 10%;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, var(--before-y, 0), 0);
  transition: transform 0.1s ease-out;
}

.section-bg-1:first-of-type::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(172, 28, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 15%;
  left: 5%;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, var(--after-y, 0), 0);
  transition: transform 0.1s ease-out;
}

.section-bg-1:first-of-type .position-absolute.top-50 {
  z-index: 3;
  animation: fadeInUp 1s ease-out;
  will-change: opacity, transform;
}

.section-bg-1:first-of-type h1 {
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  will-change: text-shadow;
}

.section-bg-1:first-of-type .lead {
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  will-change: opacity, transform;
}

.section-bg-1:first-of-type .btn {
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.section-bg-1:first-of-type .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section-1) 50%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(172, 28, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease-out;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero .btn {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@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 pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.star {
  display: inline-block;
  color: var(--accent-star);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.glow-text {
  color: var(--accent-glow);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 20px rgba(0, 217, 255, 0.3);
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-glow), var(--secondary), var(--accent-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  margin: 3rem 0;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: linear-gradient(135deg, rgba(52, 0, 106, 0.3), rgba(108, 28, 122, 0.2));
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  transform: translateY(-8px);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-glow);
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-item {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(18, 0, 42, 0.3);
  border-left: 3px solid var(--accent-glow);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.list-item:hover {
  background: rgba(18, 0, 42, 0.6);
  border-left-color: var(--accent-star);
  padding-left: 1.5rem;
}

.list-item-title {
  color: var(--accent-glow);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.list-item-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.progress {
  background-color: rgba(18, 0, 42, 0.5);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.alert {
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 217, 255, 0.3);
  background: rgba(18, 0, 42, 0.5);
  backdrop-filter: blur(10px);
}

.alert-info {
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.5);
  color: var(--accent-glow);
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.5);
  color: #4CAF50;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.5);
  color: #FFC107;
}

.alert-danger {
  background: rgba(244, 67, 54, 0.1);
  border-color: rgba(244, 67, 54, 0.5);
  color: #F44336;
}

.modal-content {
  background: linear-gradient(135deg, rgba(13, 0, 31, 0.95), rgba(8, 0, 20, 0.95));
  border: 1px solid rgba(0, 217, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  padding: 1.5rem;
}

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-glow);
}

.btn-close {
  filter: invert(1) brightness(1.2);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  padding: 1.5rem;
}

.table {
  color: var(--text-light);
}

.table thead th {
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  color: var(--accent-glow);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(18, 0, 42, 0.3);
}

.table tbody tr {
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  transition: var(--transition-smooth);
}

.table tbody tr:hover {
  background: rgba(0, 217, 255, 0.05);
}

.table tbody td {
  color: var(--text-muted);
}

.pagination .page-link {
  background-color: rgba(18, 0, 42, 0.5);
  border-color: rgba(0, 217, 255, 0.2);
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.pagination .page-link:hover {
  background-color: rgba(0, 217, 255, 0.2);
  border-color: var(--accent-glow);
  color: var(--accent-glow);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--accent-glow);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.dropdown-menu {
  background: linear-gradient(135deg, rgba(13, 0, 31, 0.95), rgba(8, 0, 20, 0.95));
  border: 1px solid rgba(0, 217, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
}

.dropdown-item {
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent-glow);
}

.dropdown-divider {
  border-color: rgba(0, 217, 255, 0.2);
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
}




/* 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);
}

.text-muted {
  color: #D0D0E8 !important;
}

.bg-light {
  background-color: rgba(18, 0, 42, 0.7) !important;
  color: var(--text-light) !important;
}

.bg-white {
  background-color: rgba(28, 0, 61, 0.8) !important;
  color: var(--text-light) !important;
}

.text-dark {
  color: var(--text-light) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.lead {
  color: var(--text-muted) !important;
}

.small {
  color: var(--text-muted) !important;
}

.card.bg-white,
.card.bg-light {
  background: linear-gradient(135deg, rgba(18, 0, 42, 0.7) 0%, rgba(28, 0, 61, 0.5) 100%) !important;
  color: var(--text-light) !important;
}

.card.bg-white .text-dark,
.card.bg-light .text-dark {
  color: var(--text-light) !important;
}

.card.bg-white .text-muted,
.card.bg-light .text-muted {
  color: var(--text-muted) !important;
}

.accordion-button.bg-white {
  background-color: rgba(18, 0, 42, 0.7) !important;
  color: var(--text-light) !important;
}

.accordion-body.text-muted {
  color: var(--text-muted) !important;
}

.form-text.text-muted {
  color: var(--text-muted) !important;
}

.blockquote {
  color: var(--text-muted) !important;
}

.blockquote .text-muted {
  color: var(--text-muted) !important;
}

.list-unstyled .text-muted {
  color: var(--text-muted) !important;
}

a.text-muted {
  color: var(--text-muted) !important;
}

a.text-muted:hover {
  color: var(--accent-glow) !important;
}

h4.text-dark,
h5.text-dark,
h6.text-dark {
  color: var(--text-light) !important;
}

.alert .text-muted {
  color: var(--text-muted) !important;
}

.alert-info .text-muted {
  color: #B0F0FF !important;
}

.alert-success .text-muted {
  color: #B0FFB0 !important;
}

.alert-warning .text-muted {
  color: #FFE8B0 !important;
}

.alert-danger .text-muted {
  color: #FFB0B0 !important;
}

.section-1 .text-muted,
.section-2 .text-muted,
.section-3 .text-muted,
.section-4 .text-muted,
.section-5 .text-muted {
  color: var(--text-muted) !important;
}

.section-1 .bg-white,
.section-2 .bg-white,
.section-3 .bg-white,
.section-4 .bg-white,
.section-5 .bg-white {
  background: rgba(28, 0, 61, 0.7) !important;
  color: var(--text-light) !important;
}

.section-1 .bg-light,
.section-2 .bg-light,
.section-3 .bg-light,
.section-4 .bg-light,
.section-5 .bg-light {
  background: rgba(18, 0, 42, 0.6) !important;
  color: var(--text-light) !important;
}

.display-4.text-dark,
.display-5.text-dark {
  color: var(--text-light) !important;
}

.bg-white .text-dark,
.bg-light .text-dark {
  color: var(--text-light) !important;
}

.bg-white h4.text-dark,
.bg-white h5.text-dark,
.bg-white h6.text-dark,
.bg-light h4.text-dark,
.bg-light h5.text-dark,
.bg-light h6.text-dark {
  color: var(--text-light) !important;
}

.bg-white p.text-dark,
.bg-light p.text-dark {
  color: var(--text-muted) !important;
}

form.bg-white {
  background: rgba(28, 0, 61, 0.8) !important;
  color: var(--text-light) !important;
}

form.bg-white .text-dark {
  color: var(--text-light) !important;
}

form.bg-white .form-label {
  color: var(--text-light) !important;
}

form.bg-white .form-control {
  background: rgba(18, 0, 42, 0.8) !important;
  color: var(--text-light) !important;
  border-color: rgba(0, 217, 255, 0.4) !important;
}

.rounded.shadow-sm.bg-white,
.rounded.shadow.bg-white {
  background: rgba(28, 0, 61, 0.7) !important;
  color: var(--text-light) !important;
}

.rounded.shadow-sm.bg-white .text-dark,
.rounded.shadow.bg-white .text-dark {
  color: var(--text-light) !important;
}

.small.text-muted {
  color: var(--text-muted) !important;
}

.text-muted.small {
  color: var(--text-muted) !important;
}

.lh-sm.text-muted,
.lh-lg.text-muted {
  color: var(--text-muted) !important;
}

.text-decoration-none.text-muted {
  color: var(--text-muted) !important;
}

.text-decoration-none.text-muted:hover {
  color: var(--accent-glow) !important;
}

.transition.text-muted {
  color: var(--text-muted) !important;
}

.transition.text-muted:hover {
  color: var(--accent-glow) !important;
}

.section-bg-1 {
  background: linear-gradient(135deg, var(--bg-section-1) 0%, var(--bg-section-2) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-1:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(172, 28, 122, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-2 {
  background: linear-gradient(135deg, var(--bg-section-2) 0%, var(--bg-section-3) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(172, 28, 122, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-3 {
  background: linear-gradient(135deg, var(--bg-section-3) 0%, var(--bg-section-4) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 50%, rgba(0, 217, 255, 0.07) 0%, transparent 50%),
              radial-gradient(circle at 60% 50%, rgba(172, 28, 122, 0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-4 {
  background: linear-gradient(135deg, var(--bg-section-4) 0%, var(--bg-section-5) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 40%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 75% 60%, rgba(172, 28, 122, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-5 {
  background: linear-gradient(135deg, var(--bg-section-5) 0%, var(--bg-section-1) 100%);
  position: relative;
  overflow: hidden;
}

.section-bg-5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-bg-1 > *,
.section-bg-2 > *,
.section-bg-3 > *,
.section-bg-4 > *,
.section-bg-5 > * {
  position: relative;
  z-index: 1;
}

.section-bg-1 .text-dark,
.section-bg-2 .text-dark,
.section-bg-3 .text-dark,
.section-bg-4 .text-dark,
.section-bg-5 .text-dark {
  color: var(--text-light) !important;
}

.section-bg-1 .text-muted,
.section-bg-2 .text-muted,
.section-bg-3 .text-muted,
.section-bg-4 .text-muted,
.section-bg-5 .text-muted {
  color: var(--text-muted) !important;
}

.section-bg-1 .bg-white,
.section-bg-2 .bg-white,
.section-bg-3 .bg-white,
.section-bg-4 .bg-white,
.section-bg-5 .bg-white {
  background: rgba(28, 0, 61, 0.7) !important;
  color: var(--text-light) !important;
}

.section-bg-1 .bg-light,
.section-bg-2 .bg-light,
.section-bg-3 .bg-light,
.section-bg-4 .bg-light,
.section-bg-5 .bg-light {
  background: rgba(18, 0, 42, 0.6) !important;
  color: var(--text-light) !important;
}

.card .text-dark {
  color: var(--text-light) !important;
}

.card .text-muted {
  color: var(--text-muted) !important;
}

.card-title.text-dark {
  color: var(--accent-glow) !important;
}

.list-unstyled strong {
  color: var(--text-light) !important;
}

.list-unstyled .text-warning,
.list-unstyled .text-success,
.list-unstyled .text-info,
.list-unstyled .text-primary {
  color: inherit !important;
}

.footer-cosmic {
  color: var(--text-light) !important;
}

.footer-cosmic p[style*="color: #b0b0b0"],
.footer-cosmic span[style*="color: #b0b0b0"],
.footer-cosmic a[style*="color: #b0b0b0"] {
  color: var(--text-muted) !important;
}

.footer-section ul li a {
  color: var(--text-muted) !important;
}

.footer-section ul li a:hover {
  color: var(--accent-glow) !important;
}

.footer-contact-info {
  color: var(--text-muted) !important;
}

.footer-contact-info span,
.footer-contact-info a {
  color: var(--text-muted) !important;
}

.footer-contact-info a:hover {
  color: var(--accent-glow) !important;
}

.footer-cosmic-content p {
  color: var(--text-muted) !important;
}

.footer-cosmic-content span {
  color: var(--text-muted) !important;
}

.footer-cosmic-content a {
  color: var(--text-muted) !important;
}

.footer-cosmic-content a:hover {
  color: var(--accent-glow) !important;
}

[style*="color: #b0b0b0"] {
  color: var(--text-muted) !important;
}

[style*="color: #d0d0d0"] {
  color: var(--text-muted) !important;
}

[style*="color: #e0e0e0"] {
  color: var(--text-light) !important;
}

.text-white {
  color: var(--text-light) !important;
}

.text-white-50 {
  color: rgba(240, 240, 255, 0.5) !important;
}

.text-white-75 {
  color: rgba(240, 240, 255, 0.75) !important;
}

.card-body {
  color: var(--text-light) !important;
}

.card-body .text-dark {
  color: var(--text-light) !important;
}

.card-body .text-muted {
  color: var(--text-muted) !important;
}

.newsletter-form input {
  background: rgba(18, 0, 42, 0.6) !important;
  border: 1px solid rgba(0, 217, 255, 0.3) !important;
  color: var(--text-light) !important;
}

.newsletter-form input::placeholder {
  color: rgba(208, 208, 232, 0.6) !important;
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--primary), var(--btn-color)) !important;
  color: white !important;
  border: none !important;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--btn-color), var(--secondary)) !important;
}

.social-links a {
  color: var(--text-muted) !important;
  transition: var(--transition-smooth) !important;
}

.social-links a:hover {
  color: var(--accent-glow) !important;
  transform: translateY(-3px) !important;
}

.contact-item {
  color: var(--text-muted) !important;
}

.contact-item i {
  color: var(--accent-glow) !important;
}

.contact-item span,
.contact-item a {
  color: var(--text-muted) !important;
}

.contact-item a:hover {
  color: var(--accent-glow) !important;
}

.img-fluid.rounded.shadow {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
}

.img-fluid.rounded.shadow:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 40px rgba(0, 217, 255, 0.3);
  filter: brightness(1.1) contrast(1.1);
}

.btn-warning {
  background: linear-gradient(135deg, #FFC107, #FF9800);
  color: #000;
  border: 2px solid rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.btn-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-warning:hover::before {
  left: 100%;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #FFD54F, #FFC107);
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.7), 0 0 60px rgba(255, 193, 7, 0.4);
  transform: translateY(-3px) scale(1.05);
  color: #000;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: var(--text-light);
}

.list-unstyled li {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.list-unstyled li:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(10px);
  padding-left: 1rem;
}

.list-unstyled li i {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px currentColor);
}

.list-unstyled li:hover i {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 10px currentColor);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@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);
  }
}

.container-fluid {
  position: relative;
  z-index: 1;
}

.row {
  position: relative;
  z-index: 1;
}

.display-3 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.05em;
}

h2.h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--accent-glow), var(--secondary), var(--accent-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 217, 255, 0.2) !important;
}

.shadow-sm {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 217, 255, 0.1) !important;
}

.transition-all {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}