:root {
  /* Elegant Minimalist Palette */
  --color-primary: #F8F9FA;
  --color-secondary: #E9ECEF;
  --color-bg: linear-gradient(135deg, #F8F9FA 0%, #E2E8F0 25%, #F1F5F9 50%, #E9ECEF 75%, #F8F9FA 100%);
  --color-bg-footer: #F1F3F4;
  --color-accent: #6C5CE7;
  --color-section-1: #FEFEFE;
  --color-section-2: #FAFBFC;
  --color-section-3: #F8F9FA;
  --color-section-4: #F1F3F4;

  --color-text-primary: #2D3748;
  --color-text-secondary: #718096;
  --color-text-muted: #A0AEC0;

  --color-mint: #48BB78;
  --color-lavender: #9F7AEA;
  --color-coral: #ED8936;

  --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
  --shadow-md: 0 8px 24px rgba(108, 92, 231, 0.12);
  --shadow-lg: 0 16px 48px rgba(108, 92, 231, 0.16);
  --shadow-glow: 0 0 20px rgba(108, 92, 231, 0.2);

  --border-radius-sm: 16px;
  --border-radius-md: 24px;
  --border-radius-lg: 32px;

  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.section-bg-1 {
  background: linear-gradient(135deg, var(--color-section-1) 0%, var(--color-section-2) 100%);
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.section-bg-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(72, 187, 120, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-2 {
  background: linear-gradient(135deg, var(--color-section-2) 0%, var(--color-section-3) 100%);
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.section-bg-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(159, 122, 234, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(237, 137, 54, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-3 {
  background: linear-gradient(135deg, var(--color-section-3) 0%, var(--color-section-4) 100%);
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
}

.section-bg-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-4 {
  background: linear-gradient(135deg, var(--color-section-4) 0%, var(--color-primary) 100%);
  color: var(--color-text-primary);
}

.section-bg-1 p,
.section-bg-2 p,
.section-bg-3 p,
.section-bg-4 p,
.section-bg-1 span,
.section-bg-2 span,
.section-bg-3 span,
.section-bg-4 span {
  color: var(--color-text-secondary);
}

.section-bg-1 .text-muted,
.section-bg-2 .text-muted,
.section-bg-3 .text-muted,
.section-bg-4 .text-muted,
.section-bg-1 .text-white-50,
.section-bg-2 .text-white-50,
.section-bg-3 .text-white-50,
.section-bg-4 .text-white-50 {
  color: #a5b3c6 !important;
}

.section-bg-1 .card,
.section-bg-2 .card {
  background-color: rgba(13, 17, 23, 0.92);
  border-color: rgba(88, 166, 255, 0.12);
}

.section-bg-1 .card h3,
.section-bg-2 .card h3,
.section-bg-3 .card h3,
.section-bg-4 .card h3 {
  color: var(--color-text-primary);
}

.section-bg-1 .btn-outline-primary,
.section-bg-2 .btn-outline-primary,
.section-bg-3 .btn-outline-primary,
.section-bg-4 .btn-outline-primary {
  color: #58a6ff;
  border-color: rgba(88, 166, 255, 0.5);
}

.section-bg-1 .btn-outline-primary:hover,
.section-bg-2 .btn-outline-primary:hover,
.section-bg-3 .btn-outline-primary:hover,
.section-bg-4 .btn-outline-primary:hover {
  background-color: rgba(88, 166, 255, 0.12);
  color: #58a6ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  background-attachment: fixed;
  color: var(--color-text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(72, 187, 120, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(237, 137, 54, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(159, 122, 234, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
}

h4 {
  font-size: 1.375rem;
  color: var(--color-text-primary);
}

h5 {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}

h6 {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--color-cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

button, .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn {
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFE55C 100%);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFE55C 0%, var(--color-accent) 100%);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid var(--color-text-secondary);
  color: var(--color-text-secondary);
}

.btn-outline-light:hover {
  background: transparent;
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.5);
}

main {
  width: 100%;
}

.container {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

.navbar {
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, rgba(22, 27, 34, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.nav-link {
  color: var(--color-text-secondary) !important;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-accent));
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--color-accent) !important;
}

.nav-link.active::after {
  width: 80%;
}

.card {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(13, 17, 23, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.badge {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  color: var(--color-accent);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(0, 217, 255, 0.15);
  color: var(--color-cyan);
  border-color: rgba(0, 217, 255, 0.3);
}

.badge-success {
  background: rgba(0, 255, 65, 0.15);
  color: var(--color-lime);
  border-color: rgba(0, 255, 65, 0.3);
}

.badge-warning {
  background: rgba(255, 215, 0, 0.15);
  color: var(--color-accent);
  border-color: rgba(255, 215, 0, 0.3);
}

.form-control {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--color-text-primary);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus {
  background: rgba(22, 27, 34, 0.8);
  border-color: var(--color-cyan);
  color: var(--color-text-primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
  outline: none;
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-label {
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.input-group {
  gap: 0.5rem;
}

.input-group-text {
  background: transparent;
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-md);
}

.pagination .page-link {
  background: transparent;
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.pagination .page-link:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  border-color: var(--color-accent);
  color: #000;
}

.table {
  color: var(--color-text-secondary);
}

.table thead {
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.table thead th {
  color: var(--color-text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  background: rgba(22, 27, 34, 0.5);
}

.table tbody tr {
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  transition: all var(--transition-fast);
}

.table tbody tr:hover {
  background: rgba(0, 217, 255, 0.08);
}

.alert {
  border-radius: var(--border-radius-md);
  border: 1px solid;
  backdrop-filter: blur(10px);
}

.alert-primary {
  background: rgba(0, 217, 255, 0.1);
  border-color: rgba(0, 217, 255, 0.3);
  color: var(--color-cyan);
}

.alert-success {
  background: rgba(0, 255, 65, 0.1);
  border-color: rgba(0, 255, 65, 0.3);
  color: var(--color-lime);
}

.alert-warning {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--color-accent);
}

.alert-danger {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
  color: #FF4757;
}

.modal-content {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.modal-title {
  color: var(--color-text-primary);
  font-weight: 700;
}

.btn-close {
  filter: invert(1);
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.btn-close:hover {
  opacity: 1;
  filter: invert(1) drop-shadow(0 0 8px rgba(0, 217, 255, 0.5));
}

.dropdown-menu {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(0, 217, 255, 0.15);
  color: var(--color-accent);
}

.dropdown-item.active {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  color: var(--color-accent);
}

.progress {
  background: rgba(22, 27, 34, 0.5);
  border-radius: var(--border-radius-sm);
  height: 6px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-accent) 100%);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.toast {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast-body {
  color: var(--color-text-secondary);
}

.list-group {
  gap: 0.5rem;
}

.list-group-item {
  background: transparent;
  border: 1px solid rgba(0, 217, 255, 0.1);
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.list-group-item:hover {
  background: rgba(0, 217, 255, 0.08);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateX(4px);
}

.list-group-item.active {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-color: var(--color-cyan);
  color: var(--color-accent);
}

.breadcrumb {
  background: transparent;
  gap: 0.5rem;
}

.breadcrumb-item {
  color: var(--color-text-secondary);
}

.breadcrumb-item a {
  color: var(--color-accent);
}

.breadcrumb-item.active {
  color: var(--color-text-secondary);
}

.nav-tabs {
  border-bottom: 2px solid rgba(0, 217, 255, 0.1);
  gap: 1rem;
}

.nav-tabs .nav-link {
  border: none;
  color: var(--color-text-secondary);
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: all var(--transition-fast);
}

.nav-tabs .nav-link:hover {
  border-bottom-color: rgba(0, 217, 255, 0.3);
}

.nav-tabs .nav-link.active {
  background: transparent;
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

.nav-pills .nav-link {
  background: transparent;
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.nav-pills .nav-link:hover {
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-cyan);
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  color: #000;
}

section {
  padding: 4rem 0;
  position: relative;
}

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

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

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

section.section-alt {
  background: var(--color-section-4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-section-1) 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

footer {
  background: var(--color-bg-footer);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--color-accent);
}

footer a:hover {
  color: var(--color-cyan);
}

.footer-section h5 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 50%;
  color: var(--color-cyan);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
  transform: translateY(-4px);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
  margin: 2rem 0;
}

.feature-box {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.6) 0%, rgba(13, 17, 23, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.feature-box:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
  transform: translateY(-8px);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.5) 0%, rgba(13, 17, 23, 0.5) 100%);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.stat-box:hover {
  border-color: rgba(0, 217, 255, 0.4);
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.regulator-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.regulator-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background-color: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.2);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.regulator-logos a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(4, 217, 255, 0.15);
  border-color: rgba(88, 166, 255, 0.45);
}

.regulator-logos svg {
  height: 48px !important;
  width: auto !important;
  max-width: 140px !important;
  display: block !important;
  flex-shrink: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain !important;
  box-sizing: border-box !important;
}

.regulator-logos .regulator-icon-compact svg {
  height: 42px !important;
  max-width: 120px !important;
}

.regulator-logos .regulator-icon-round svg {
  height: 48px !important;
  width: 48px !important;
}

.cookie-layer {
  position: fixed;
  inset: auto 0 0 0;
  background-color: rgba(10, 13, 17, 0.98);
  border-top: 1px solid rgba(88, 166, 255, 0.3);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1080;
  padding: 24px 0;
}

.cookie-layer.active {
  display: block;
}

.cookie-layer p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.cookie-layer a {
  color: #ffd700;
}

.cookie-layer .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-layer .cookie-btn {
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.cookie-layer .cookie-btn-primary {
  background-color: #ffd700;
  color: #000;
}

.cookie-layer .cookie-btn-primary:hover {
  background-color: #ffe55c;
}

.cookie-layer .cookie-btn-outline {
  background-color: transparent;
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.4);
}

.cookie-layer .cookie-btn-outline:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(1, 4, 9, 0.8);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1090;
}

.cookie-settings-overlay.active {
  display: flex;
}

.cookie-settings-panel {
  background-color: #0d1117;
  border-radius: 18px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(88, 166, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  color: var(--color-text-primary);
}

.cookie-settings-panel h3 {
  margin-bottom: 16px;
}

.cookie-settings-panel p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(88, 166, 255, 0.15);
}

.cookie-toggle:last-child {
  border-bottom: none;
}

.cookie-toggle label {
  font-weight: 600;
  color: var(--color-text-primary);
}

.cookie-toggle span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 8px;
  max-width: 320px;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(88, 166, 255, 0.2);
  transition: all var(--transition-base);
  border-radius: 28px;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: all var(--transition-base);
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #58a6ff;
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

.cookie-settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.cookie-settings-actions button {
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.cookie-settings-actions .cookie-save {
  background-color: #ffd700;
  color: #000;
}

.cookie-settings-actions .cookie-save:hover {
  background-color: #ffe55c;
}

.cookie-settings-actions .cookie-cancel {
  background-color: transparent;
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.4);
}

.cookie-settings-actions .cookie-cancel:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

/* ===========================================
   ELEGANT MINIMALIST DESIGN OVERRIDES
   =========================================== */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* Header Styling */
header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color-accent) !important;
  letter-spacing: -0.02em;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text-primary) !important;
  transition: var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-lavender));
  transition: width var(--transition-base);
}

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

/* Card Styling */
.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 92, 231, 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-mint), var(--color-lavender));
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108, 92, 231, 0.2);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

/* Button Styling */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 2rem;
  transition: var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-lavender) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

/* Form Elements */
.form-control {
  border: 2px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
  background: white;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-bg-footer) 0%, var(--color-secondary) 100%);
  border-top: 1px solid rgba(108, 92, 231, 0.1);
  color: var(--color-text-primary);
}

footer a {
  color: var(--color-accent);
  transition: var(--transition-base);
}

footer a:hover {
  color: var(--color-lavender);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* Organic Shapes */
.blob {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(72, 187, 120, 0.1));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob 10s ease-in-out infinite;
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 40% 20% 60% / 30% 50% 80% 40%; }
  75% { border-radius: 40% 50% 60% 30% / 70% 40% 60% 50%; }
}

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

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent), var(--color-lavender), var(--color-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--color-accent), var(--color-lavender));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-accent));
}

.text-muted {
  color: #ffffff !important;
}