:root {
  --bg-dark: #0d1117;
  --card-bg: rgba(22, 27, 34, 0.7);
  --accent-gold: #d4af37;
  --text-main: #c9d1d9;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  padding: 20px;
}

.logo {
  max-width: 150px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Update the card spacing since the logo takes up space */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

h1 { color: #fff; margin-bottom: 15px; }
p { color: #8b949e; line-height: 1.6; margin-bottom: 30px; }

.btn-home {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: var(--accent-gold);
  color: #000;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}