:root {
  /* User-specified color palette */
  --primary-color: #00ff9d;
  --secondary-color: #ffd700;
  --background-color: #050510;
  --footer-bg-color: #020205;
  --button-color: #00ff9d;
  --section-bg-1: #050510;
  --section-bg-2: #0a0a1a;
  --section-bg-3: #000000;
  
  /* Soft & Organic color variations */
  --primary-light: #33ffb3;
  --primary-dark: #00cc7d;
  --secondary-light: #ffed4e;
  --secondary-dark: #e6c200;
  --organic-green: #1a4d3a;
  --organic-gold: #4a3f1a;
  
  /* Typography */
  --font-primary: 'Nunito', 'Inter', sans-serif;
  --font-secondary: 'Poppins', 'Inter', sans-serif;
  
  /* Spacing and sizing */
  --border-radius-sm: 16px;
  --border-radius-md: 20px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  /* Shadows - soft and diffused */
  --shadow-soft-sm: 0 4px 20px -8px rgba(0, 255, 157, 0.15);
  --shadow-soft-md: 0 10px 30px -10px rgba(0, 255, 157, 0.2);
  --shadow-soft-lg: 0 20px 60px -15px rgba(0, 255, 157, 0.25);
  --shadow-organic: 0 15px 40px -12px rgba(255, 215, 0, 0.15);
  --shadow-dark: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  --gradient-organic: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-dark: linear-gradient(135deg, var(--background-color) 0%, var(--section-bg-2) 100%);
}

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-color);
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography hierarchy with organic feel */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Links with organic hover effects */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--border-radius-sm);
  padding: 0.25rem 0.5rem;
}

a:hover {
  color: var(--primary-light);
  background-color: rgba(0, 255, 157, 0.1);
  transform: translateY(-1px);
}

/* Organic containers and sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--section-bg-1);
}

.section-darker {
  background-color: var(--section-bg-2);
}

.section-darkest {
  background-color: var(--section-bg-3);
}

/* Soft & Organic Cards */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 157, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.6;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-lg);
  border-color: rgba(0, 255, 157, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.card-organic {
  background: linear-gradient(145deg, rgba(0, 255, 157, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-xl);
}

/* Organic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-soft-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: #000;
  box-shadow: var(--shadow-organic);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -15px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-md);
}

/* Organic Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Organic Navigation */
.navbar {
  background: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(5, 5, 16, 0.98);
  box-shadow: var(--shadow-dark);
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(0, 255, 157, 0.1);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 255, 157, 0.15);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  background: var(--gradient-organic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

/* Organic Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Organic Badges and Tags */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: #000;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.25rem;
}

.badge-secondary {
  background: var(--gradient-secondary);
}

/* Organic Footer */
.footer {
  background: var(--footer-bg-color);
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

/* Organic Animations */
@keyframes organic-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes organic-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 157, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 157, 0.6); }
}

.float-animation {
  animation: organic-float 6s ease-in-out infinite;
}

.glow-animation {
  animation: organic-glow 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 1rem;
    border-radius: var(--border-radius-md);
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
  }
  
  .hero {
    min-height: 80vh;
  }
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-dark { background-color: var(--background-color); }
.bg-dark-light { background-color: var(--section-bg-2); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }

.shadow-soft { box-shadow: var(--shadow-soft-md); }
.shadow-soft-lg { box-shadow: var(--shadow-soft-lg); }
.shadow-organic { box-shadow: var(--shadow-organic); }

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Selection Styling */
::selection {
  background: rgba(0, 255, 157, 0.3);
  color: #ffffff;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Organic Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}


/* 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;
    }
}