/* =============================
   TEAM REGAL ELITE STYLESHEET
   Modern + Mobile Optimized
   ============================= */

:root {
  --bg-dark: #0e0e0e;
  --bg-card: #181818;
  --bg-nav: #111;
  --accent: #d4af37;
  --text-light: #f2f2f2;
  --text-muted: #aaa;
}

body.light {
  --bg-dark: #f4f4f4;
  --bg-card: #ffffff;
  --bg-nav: #e9e9e9;
  --accent: #b8860b;
  --text-light: #111;
  --text-muted: #555;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

header img { width: 100%; height: auto; display: block; }

/* ================= NAVIGATION ================= */

nav {
  background: var(--bg-nav);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 25px;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.theme-toggle {
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--accent);
  color: #000;
  font-weight: bold;
}

/* ================= LAYOUT ================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

h1, h2, h3 { color: var(--accent); margin-bottom: 15px; }

.button {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

footer {
  background: var(--bg-nav);
  text-align: center;
  padding: 25px;
  color: var(--text-muted);
}

.download-card {
  text-decoration: none;
  color: var(--text-light);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  cursor: pointer;
}


/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--bg-nav);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.active { display: flex; }

  .menu-toggle { display: block; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .container { padding: 30px 15px; }
}
