/* styles.css */
:root {
  --bg-main: #0a0503;
  --bg-card: #1c140d;
  --accent: #e91e63;
  --accent-hover: #c2185b;
  --text-light: #f5e8d3;
  --text-muted: #a68a6d;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-light);
}

nav {
  background-color: rgba(10, 5, 3, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #3a2a1f;
}

.luxury-card {
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  background-color: var(--bg-card);
  border-radius: 24px;
}

.luxury-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 40px 80px -20px rgba(233, 30, 99, 0.5);
}

.luxury-card:hover img {
  transform: scale(1.15);
}

.luxury-card img {
  transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.login-container {
  background-color: var(--bg-card);
  border: 1px solid #3a2a1f;
}

.text-white { color: var(--white); }