:root {
  --bg: #0b0c0a;
  --olive: #5c5f33;
  --olive-light: #7a7f45;
  --text: #eceee6;
  --muted: #9a9d8f;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 50% 20%, #16180f 0%, var(--bg) 60%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.glow {
  position: absolute;
  top: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(92, 95, 51, 0.35) 0%, rgba(92, 95, 51, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(92, 95, 51, 0.5);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0.75rem 0 2.5rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn-discord {
  background: #5865f2;
}

.btn-discord:hover {
  background: #6f7bf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.35);
}

.btn-roblox {
  background: var(--olive);
}

.btn-roblox:hover {
  background: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 95, 51, 0.4);
}

footer {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 1.5rem 0;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.1rem;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
  }
}
