/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('gold.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 0, 150, 0.2), rgba(0, 255, 255, 0.2));
  z-index: -1;
  animation: rotation 15s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.37);
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.8);
}

button {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0px 4px 15px rgba(255, 95, 109, 0.3);
}

button:hover {
  background: linear-gradient(135deg, #ffc371, #ff5f6d);
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(255, 95, 109, 0.5);
}

.quote-container {
  margin-top: 25px;
  font-size: 1.5rem;
  font-style: italic;
  color: #f1f1f1;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
