@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  --color-primary: #00e5ff;
  --color-secondary: #7c4dff;
  --color-text: #e0e6f0;
  --color-text-muted: #8892b0;
  --color-bg: #0a0f1c;
  --color-bg-footer: #050812;

  --section-bg-1: #0a0f1c;
  --section-bg-2: #1a2332;
  --section-bg-3: #2d3e50;
  --section-bg-4: #34495e;

  --accent-1: #ff6b35;
  --accent-2: #ffd700;
  --accent-3: #00ff88;

  --border-radius: 12px;
  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.15), 0 0 40px rgba(0, 229, 255, 0.1);
  --shadow-glow-intense: 0 0 25px rgba(0, 229, 255, 0.25), 0 0 50px rgba(0, 229, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 229, 255, 0.1);
  --transition-smooth: all 0.3s ease-in-out;
}

/* --- Base & Typography --- */

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover, a:focus {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* --- Section Backgrounds & Layout --- */

.section-bg-1 { background-color: var(--section-bg-1); }
.section-bg-2 { background-color: var(--section-bg-2); }
.section-bg-3 { background-color: var(--section-bg-3); }
.section-bg-4 { background-color: var(--section-bg-4); }

.footer {
  background-color: var(--color-bg-footer);
}

/* --- Components --- */

.btn {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-intense);
  background: #33ffff;
  color: #000;
}

.card {
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition-smooth);
}

/* --- Visual Effects --- */

.glass-morphism {
  background: rgba(26, 35, 50, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: var(--shadow-card);
}

.glass-morphism:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.neon-text {
  color: #fff;
  text-shadow:
    0 0 5px rgba(0, 229, 255, 0.8),
    0 0 10px rgba(0, 229, 255, 0.8),
    0 0 20px rgba(0, 229, 255, 0.8),
    0 0 40px rgba(124, 77, 255, 0.8),
    0 0 80px rgba(124, 77, 255, 0.8);
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-element {
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* --- Forms --- */
.form-control {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: rgba(26, 35, 50, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-family: var(--font-primary);
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
  background-color: rgba(26, 35, 50, 0.8);
}


/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  body { font-size: 15px; }

  .card {
    padding: 1.5rem;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}