/* Tailwind CSS CDN will be used in HTML files */
/* Additional custom styles */

:root {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 263 70% 50%;
  --primary-foreground: 0 0% 98%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 12 76% 61%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 263 70% 50%;
  --success: 142 76% 36%;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0a0f;
  color: #fafafa;
  line-height: 1.6;
}

.glow-text {
  text-shadow: 0 0 20px hsl(var(--primary) / 0.5);
}

.gradient-neon {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  transition: all 0.3s ease;
}

.gradient-neon:hover {
  box-shadow: 0 0 30px hsl(var(--primary) / 0.6);
  transform: translateY(-2px);
}

.shadow-glow {
  box-shadow: 0 0 30px hsl(var(--primary) / 0.3);
}

.shadow-glow-pink {
  box-shadow: 0 0 30px hsl(var(--accent) / 0.3);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: #1a1a24;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 90%;
  border: 1px solid #2a2a3a;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a24;
  border-top: 1px solid #2a2a3a;
  padding: 1rem;
  z-index: 999;
  display: none;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 300px;
  background-color: #1a1a24;
  border-left: 1px solid #2a2a3a;
  z-index: 1000;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateX(0);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}
