:root {
  --background: #030711;
  --foreground: #f1f5f9;
  --primary: #F5F5F5; /* Light Grayish White */
  --secondary: #D3D3D3; /* Light Gray */
  --accent: #ADD8E6; /* Light Blue */
  --text-primary: #333333; /* Dark Gray */
  --text-secondary: #555555; /* Medium Gray */
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
    --primary: #1A1A1A; /* Very Dark Gray / Almost Black */
    --secondary: #2C2C2C; /* Dark Gray */
    --accent: #007BFF; /* Bright Blue */
    --text-primary: #E0E0E0; /* Light Gray */
    --text-secondary: #B0B0B0; /* Medium Gray */
  }
}

body {
  background: var(--primary);
  color: var(--text-primary);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background-color: transparent;
}

.navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-inner {
  transition: all 0.5s ease;
}

.navbar.scrolled .navbar-inner {
  background-color: transparent;
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  /* Removed box-shadow */
}

.logo-gradient {
  background: linear-gradient(135deg, #a67c52 0%, #c49b6b 50%, #a67c52 100%);
}

.btn-gradient {
  background: linear-gradient(45deg, #DAA520 0%, #FFD700 100%);
  color: #000;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

.text-gradient {
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.logo-float {
  animation: float 6s ease-in-out infinite;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Base tailwind-like utils that we need to customize for vanilla */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
