/* ===== CSS Custom Properties ===== */
:root {
  --accent: #ff6a00;
  --accent-hover: #e05800;
  --bg-body: #000000;
  --bg-surface: #161616;
  --border-color: #2a2a2a;
  --text-primary: #dcdcdc;
  --text-muted: #888888;
}

/* ===== Base Typography ===== */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 100px;
  background-color: var(--bg-body);
  color: var(--text-primary);
}

/* ===== Bootstrap Overrides ===== */
.btn-primary {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-hover);
  --bs-btn-hover-border-color: var(--accent-hover);
  --bs-btn-active-bg: var(--accent-hover);
  --bs-btn-active-border-color: var(--accent-hover);
  --bs-btn-focus-shadow-rgb: 255, 106, 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem var(--bg-body), 0 0 0 0.25rem var(--accent);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ===== Navbar ===== */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar-game {
  background-color: rgba(22, 22, 22, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.6);
}

.navbar-brand img {
  height: 40px;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  background-image: url('/img/Artboard 1.jpg');
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  padding-top: 5rem;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.7));
  margin-bottom: 1rem;
  transform: translateY(-20px);
}

.hero-download-btn {
  font-size: 1.25rem;
  padding: 0.75rem 2.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 106, 0, 0.6);
}

/* ===== Page content offset (non-hero pages) ===== */
.page-offset {
  padding-top: 80px;
}

/* ===== Footer ===== */
footer.footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

footer.footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

footer.footer a:hover {
  color: var(--accent-hover);
}