:root {
  --bg-color: #ffffff;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --accent-gold: rgb(252, 211, 64);
  --text-primary: #000000;
  --text-secondary: #a0a0a0;
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "Open Sans", -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(
    circle,
    rgba(252, 211, 64, 0.05) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 90%;
  padding: 3rem;
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 240px;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.blurb {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.blurb em {
  color: var(--accent-gold);
  font-style: normal;
  font-weight: 500;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 2.5rem;
  opacity: 0.5;
}

.identity-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.identity-info a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.identity-info a:hover {
  opacity: 0.8;
}

.footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
