/* Redirect (countdown) page only */
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');

:root{
  --bg: rgba(22, 56, 84, 1);
  --text: #bfbfbf;
  --card-bg: rgba(14, 15, 16, 0.75);
  --brand: #ffbe55;
}

html, body { height: 100%; }

body.redirect {
  font-family: "Hind Vadodara", sans-serif;
  background-color: var(--bg);
  background-image: url('/images/background.webp');
  background-repeat: repeat;
  color: var(--text);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  color: var(--brand);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
}

.card img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.countdown { font-size: 1.5rem; margin-top: 1rem; }

.fallback a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #333;
  color: var(--brand);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
.fallback a:hover { background: #444; }
