/* RESET & GLOBAL */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background-color: #050505;
  color: #fff;
  line-height: 1.6;
}
a {
  color: #ff6600;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* HEADER & NAV (same as other pages) */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}
.site-header .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.5rem;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.main-nav a {
  font-weight: 500;
  transition: color 0.2s;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 1.5rem 4rem;
  background: #333;
}
.hero-content {
  flex: 1 1 300px;
  max-width: 580px;
}
.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}
.btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.btn:hover {
  background: #e65500;
}
.hero-image {
  flex: 0 0 500px;
  margin-top: 2rem;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* GENERIC CARD */
.card {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #333;
  padding-bottom: 0.5rem;
}

/* Under Construction Styling */
.under-construction {
  text-align: center;
}
.under-construction h2 {
  color: #ffcc00;
}
.under-construction p {
  color: #ccc;
  margin-top: 1rem;
}

/* FOOTER */
.site-footer {
  background: #000;
  padding: 2rem 0 1rem;
  margin-top: 4rem;
  text-align: center;
}
.site-footer .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer p {
  color: #888;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-image {
    margin-top: 1rem;
  }
}
