@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --casino-gold: #FFD700;
  --casino-yellow: #FFC107;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.2s ease;
}

.btn-login {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.btn-login:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-register {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-register:hover {
  background-color: #ffffff;
  color: #000000;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.faq-item.active h4 span:last-child {
  transform: rotate(45deg);
}

.faq-item h4 span:last-child {
  transition: transform 0.3s ease;
}

