:root {
  --color-coral: #ff6b6b;
  --color-deep-indigo: #2d3561;
  --color-neon-magenta: #ff00ff;
  --color-lime-green: #39ff14;
  --color-gold: #ffd700;
  --color-dark-bg: #0a0e27;
  --color-darker: #060818;
  --color-light-text: #e8e8e8;
  --color-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--color-coral) 0%, var(--color-deep-indigo) 100%);
  --gradient-neon: linear-gradient(135deg, var(--color-neon-magenta) 0%, var(--color-lime-green) 100%);
  --shadow-neon: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 40px rgba(57, 255, 20, 0.2);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--color-darker);
  color: var(--color-light-text);
  line-height: 1.7;
  overflow-x: hidden;
}

.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo-text:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.nav-link {
  color: var(--color-light-text);
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-neon-magenta);
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 0, 255, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(57, 255, 20, 0.1), transparent 50%);
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-neon-magenta);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-lime-green);
  bottom: 15%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--color-gold);
  top: 60%;
  left: 60%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(30px, -30px, 0) scale(1.1);
  }
  66% {
    transform: translate3d(-20px, 20px, 0) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-light-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gradient {
  padding: 0.875rem 2rem;
  background: var(--gradient-neon);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-neon);
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5), 0 0 60px rgba(57, 255, 20, 0.3);
  color: var(--color-white);
  text-decoration: none;
}

.btn-gradient:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline-light {
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-deep-indigo);
  transform: translateY(-3px);
  text-decoration: none;
}

.floating-image {
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  animation: floatImage 6s infinite ease-in-out;
  max-width: 100%;
  height: auto;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.section-padded {
  padding: 5rem 0;
}

.bg-dark-gradient {
  background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark-bg) 100%);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-light-text);
  opacity: 0.9;
}

.ritual-card {
  background: rgba(45, 53, 97, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.ritual-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-neon);
  border-color: var(--color-neon-magenta);
}

.ritual-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(0.3);
}

.ritual-card h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.wave-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-darker) 100%);
}

.wave-section-alt {
  background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark-bg) 100%);
}

.glass-panel {
  background: rgba(45, 53, 97, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--color-neon-magenta);
  box-shadow: var(--shadow-neon);
}

.glass-panel-lg {
  background: rgba(45, 53, 97, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.content-block h3 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-lime-green);
  font-weight: bold;
  font-size: 1.25rem;
}

.rounded-lg {
  border-radius: 20px;
}

.shadow-neon {
  box-shadow: var(--shadow-neon);
}

.habit-tracker {
  background: rgba(45, 53, 97, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
}

.habit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(10, 14, 39, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.habit-item:hover {
  border-color: var(--color-lime-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
  transform: translateX(5px);
}

.habit-item.completed {
  opacity: 0.7;
}

.habit-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-lime-green);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.habit-item.completed .habit-checkbox {
  background: var(--color-lime-green);
}

.habit-item.completed .habit-checkbox::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-darker);
  font-weight: bold;
}

.habit-info h5 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.habit-tip {
  font-size: 0.875rem;
  color: var(--color-light-text);
  opacity: 0.8;
  margin: 0;
}

.floating-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.floating-card {
  background: rgba(10, 14, 39, 0.6);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.floating-card:hover {
  transform: translateY(-15px) rotate(-2deg);
  box-shadow: var(--shadow-neon);
}

.card-header-gradient {
  height: 8px;
  background: var(--gradient-neon);
}

.card-body-glass {
  padding: 2rem;
}

.card-body-glass h4 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-category {
  font-size: 0.875rem;
  color: var(--color-neon-magenta);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.nutrient-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.nutrient-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-light-text);
}

.nutrient-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-lime-green);
  font-size: 1.5rem;
  line-height: 0.5;
}

.meal-timeline {
  padding: 2rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 50px;
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(180deg, var(--color-neon-magenta), var(--color-lime-green));
  opacity: 0.3;
}

.timeline-marker {
  flex-shrink: 0;
  width: 120px;
  height: 50px;
  background: var(--gradient-neon);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1.125rem;
}

.timeline-content {
  flex: 1;
}

.timeline-content h5 {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.exercise-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.exercise-card:hover {
  transform: scale(1.02) rotate(1deg);
}

.exercise-card h4 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.exercise-duration {
  color: var(--color-neon-magenta);
  font-weight: 600;
  margin-bottom: 1rem;
}

.exercise-steps {
  margin: 1.5rem 0;
}

.step {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(10, 14, 39, 0.5);
  border-left: 3px solid var(--color-lime-green);
  border-radius: 5px;
  font-size: 0.9rem;
}

.exercise-benefit {
  font-size: 0.875rem;
  color: var(--color-light-text);
  opacity: 0.8;
  font-style: italic;
}

.testimonial-card {
  background: rgba(45, 53, 97, 0.3);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: var(--shadow-neon);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-neon-magenta);
  line-height: 1;
}

.testimonial-author strong {
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--color-light-text);
  opacity: 0.7;
}

.expert-quote {
  background: rgba(45, 53, 97, 0.3);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.expert-quote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.quote-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.1), transparent);
  pointer-events: none;
}

.expert-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.expert-quote blockquote p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.expert-quote blockquote footer {
  color: var(--color-gold);
  font-weight: 600;
  font-style: normal;
}

.expert-quote-detailed {
  background: rgba(45, 53, 97, 0.3);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.expert-quote-detailed:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.expert-content blockquote p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.expert-details strong {
  color: var(--color-gold);
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.25rem;
}

.expert-details span {
  color: var(--color-neon-magenta);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

.expert-bio {
  font-size: 0.875rem;
  color: var(--color-light-text);
  opacity: 0.8;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.faq-question h5 {
  color: var(--color-gold);
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-neon-magenta);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--color-light-text);
  line-height: 1.8;
  margin: 0;
}

.cta-section {
  padding: 5rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--color-light-text);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--color-darker);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.footer-title {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--color-light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-neon-magenta);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-neon-magenta);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  color: var(--color-light-text);
  line-height: 1.8;
}

.footer-disclaimer {
  color: var(--color-light-text);
  opacity: 0.7;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-disclaimer a {
  color: var(--color-gold);
  text-decoration: underline;
}

.page-hero {
  padding: 8rem 0 5rem;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-hero-small {
  padding: 5rem 0 3rem;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.principle-card {
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.principle-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.principle-card h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.lead-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-light-text);
}

.gradual-timeline .timeline-stage {
  transition: all 0.3s ease;
}

.gradual-timeline .timeline-stage:hover {
  transform: translateX(10px);
}

.stage-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-neon);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.gradual-timeline h4 {
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-control-glass {
  background: rgba(45, 53, 97, 0.3);
  border: 1px solid rgba(255, 0, 255, 0.2);
  color: var(--color-light-text);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control-glass:focus {
  background: rgba(45, 53, 97, 0.5);
  border-color: var(--color-neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  color: var(--color-white);
}

.form-control-glass::placeholder {
  color: rgba(232, 232, 232, 0.5);
}

.form-control-glass option {
  background: var(--color-dark-bg);
  color: var(--color-light-text);
}

label {
  color: var(--color-light-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.form-check-label {
  color: var(--color-light-text);
  margin-left: 0.5rem;
}

.form-check-label a {
  color: var(--color-gold);
  text-decoration: underline;
}

.contact-info-card {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: scale(1.05);
}

.contact-icon {
  font-size: 3rem;
  filter: grayscale(0.3);
}

.contact-info-card h4 {
  color: var(--color-gold);
  margin: 1rem 0;
}

.contact-info-card a {
  color: var(--color-light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--color-neon-magenta);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.thank-you-content {
  padding: 4rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--color-lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  margin: 0 auto;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.legal-content {
  color: var(--color-light-text);
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--color-gold);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--color-neon-magenta);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-neon-magenta);
}

.legal-content strong {
  color: var(--color-white);
  font-weight: 600;
}

.alert {
  border-radius: 10px;
  border: none;
  padding: 1.25rem;
}

.alert-warning {
  background: rgba(255, 215, 0, 0.2);
  border-left: 4px solid var(--color-gold);
  color: var(--color-light-text);
}

.alert-info {
  background: rgba(57, 255, 20, 0.2);
  border-left: 4px solid var(--color-lime-green);
  color: var(--color-light-text);
}

.table-dark {
  background: rgba(45, 53, 97, 0.3);
  color: var(--color-light-text);
}

.table-dark thead th {
  background: rgba(255, 0, 255, 0.2);
  border-color: rgba(255, 0, 255, 0.3);
  color: var(--color-gold);
}

.table-dark td,
.table-dark th {
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 2px solid var(--color-neon-magenta);
  box-shadow: 0 -5px 30px rgba(255, 0, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: var(--color-light-text);
}

.cookie-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-neon {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-neon);
  color: var(--color-white);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.btn-outline {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--color-light-text);
  border: 2px solid var(--color-light-text);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--color-light-text);
  color: var(--color-dark-bg);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-item::after {
    display: none;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-padded {
    padding: 3rem 0;
  }

  .floating-cards-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-gradient,
  .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}
