:root {
  --primary-color: #f3e45a;
  --background-color: #020406;
  --card-background: #020406;
  --text-color: #ffffff;
  --text-secondary: #aaaaaa;
  --font-family: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 1rem;
}

.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(243, 228, 90, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 228, 90, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.content-wrapper {
  text-align: center;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-placeholder {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(243, 228, 90, 0.3));
}

.main-card {
  background-color: var(--card-background);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 228, 90, 0.2);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.status-online {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(243, 228, 90, 0.5);
}

p {
  color: var(--text-secondary);
  /*margin-bottom: 2rem;*/
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  border-radius: 100px;
  isolation: isolate;

  background-color: var(--primary-color);
  color: #000;
  border: 1px solid #000000;

  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #ffe815;
  box-shadow: 0 0 20px rgba(243, 228, 90, 0.4);
  transform: scale(1.05);
}

footer {
position: absolute;
  bottom: 2rem;
  left: 0;
  color: #444;
  font-size: 0.9rem;
  width: 100%;
}

