
:root {
  --accent-color: #ff4d4d; /* Muted red */
  --bg-dark: #0f0f0f;
  --discord-color: #5865F2;
}

body {
  background-color: var(--bg-dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Atmospheric Background */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark vignette gradient simulating night/fog */
  background: radial-gradient(circle at center, #2a2a2a 0%, #000000 100%);
  z-index: -1;
}

.bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/images/banner/snow-city.5f1eaacc1e64.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.title-wrapper {
  margin-bottom: 3rem;
  position: relative;
}

.title-wrapper img {
  width: 150px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.subtitle {
  font-size: 1.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 8px;
  font-weight: 600;
  margin-top: 10px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-text {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Discord Button Styling */
.btn-discord {
  background-color: var(--discord-color);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border-radius: 4px;
}

.btn-discord:hover {
  background-color: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
  color: white;
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }
}
