<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.casino-bg {
  background: url("bg.jpg") no-repeat center center fixed,
    radial-gradient(ellipse at 60% 40%, #1a0033 0%, #0a001a 100%);
  background-size: cover, cover;
  min-height: 100vh;
  overflow-x: hidden;
}

.greek-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mediterranean-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.wave-decoration {
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  height: 4px;
  background-size: 20px 20px;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
}

.input-field {
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.section-divider {
  background: linear-gradient(90deg, transparent, #1e40af, transparent);
  height: 2px;
}

.casino-card {
  background: rgba(30, 0, 60, 0.95);
  border: 3px solid #ff00cc;
  box-shadow: 0 0 40px 10px #ff00cc44, 0 0 0 8px #fff2, 0 8px 32px 0 #000a;
  animation: casinoFadeIn 1s;
}

.casino-divider {
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00ffcc);
  height: 3px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.casino-btn {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 0 16px #ff00cc99, 0 2px 8px #000a;
  border: none;
  font-size: 1.1rem;
  transition: all 0.2s;
  outline: none;
}

.casino-btn:hover {
  background: linear-gradient(90deg, #00ffcc, #ff00cc);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 32px #00ffcc99, 0 2px 16px #000a;
}

.casino-btn-secondary {
  background: #fff2;
  color: #ff00cc;
  border: 2px solid #ff00cc;
  font-weight: bold;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  font-size: 1.1rem;
  transition: all 0.2s;
  outline: none;
}

.casino-btn-secondary:hover {
  background: #ff00cc;
  color: #fff;
}

.neon-glow {
  text-shadow: 0 0 8px #ff00cc, 0 0 16px #00ffcc;
}

.survey-step {
  animation: casinoFadeIn 0.7s;
}

@keyframes casinoFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gender-card {
  background: linear-gradient(120deg, #1a0033cc 60%, #3333ff44 100%);
  border: 2.5px solid #00fff7;
  box-shadow: 0 0 24px 4px #00fff799, 0 2px 16px #000a;
  transition: box-shadow 0.3s, border 0.3s;
}
</pre></body></html>