/* Base Styles */
:root {
  --primary: #e91e63;
  --primary-light: #f06292;
  --secondary: #00bcd4;
  --dark: #0a0a16;
  --dark-light: #1a1a2a;
}

/* Layout Components */
.hero-bg {
  background-color: var(--dark);
  background-image: radial-gradient(circle at 1px 1px, var(--dark-light) 1px, transparent 0);
  background-size: 24px 24px;
}

.loading-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: loading 3s ease-out forwards;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--dark-light);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  margin: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease-out;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Mobile Menu Styles */
#mobile-menu-overlay {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 22, 0.95);
  backdrop-filter: blur(8px);
}

#mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Interactive Elements */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 400% 400%;
  animation: border-pulse 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(233, 30, 99, 0.2);
}
}
#mobile-menu-overlay nav a {
  transition: all 0.2s ease;
}
#mobile-menu-overlay nav a:hover {
  color: white;
  transform: translateX(4px);
}
.cookie-consent {
  transition: all 0.3s ease;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1a1a2a;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  margin: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  animation: modal-appear 0.3s ease-out forwards;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
