@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  background: url('https://ask-gloria-public-bucket.s3.eu-west-2.amazonaws.com/v3_dark1.png') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: blur(6px);
  background-color: #121212;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05),
              0 0 30px rgba(106, 0, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(106, 0, 255, 0.2) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.logo-connection {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.gloria-logo {
  width: 150px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(106, 0, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gloria-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(106, 0, 255, 0.7);
}

.card-title {
  color: #FAFAFA;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(106, 0, 255, 0.5);
  font-size: 2rem;
  letter-spacing: 0.5px;
}
