* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #bcb4b4;
  color: #111827;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ================= NAVBAR ================= */

.navbar {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1f1f1f;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   NAVBAR LOGO + WEBSITE NAME
========================= */

.brand{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO IMAGE */
.brand-logo{
    width: 42px;
    height: 42px;
    object-fit: contain;

    transition: 0.3s ease;
}

/* WEBSITE NAME */
.brand-name{
    text-decoration: none;
    color: #ffffff;

    font-size: 33px;
    font-weight: 800;

    font-family: 'Inter', sans-serif;

    letter-spacing: -1px;
    line-height: 1;

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.brand:hover .brand-logo{
    transform: scale(1.08) rotate(-3deg);
}

.brand:hover .brand-name{
    color: #d1d5db;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px){

    .brand{
        gap: 10px;
    }

    .brand-logo{
        width: 34px;
        height: 34px;
    }

    .brand-name{
        font-size: 27px;
    }
}

/* Website Name */
.logo a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #bdbdbd 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #e5e5e5;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
  border-bottom: 2px solid white;
  padding-bottom: 4px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 10px;
  transition: 0.3s;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .logo a {
    font-size: 24px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: 0.4s ease;
    z-index: 1050;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }
}

    /* BLACK FOOTER */
    .footer {
      background: #000000;
      color: #e0e0e0;
      margin-top: 70px;
      border-top: 1px solid #1f1f1f;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 48px 24px 32px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-box h3 {
      font-size: 1.35rem;
      margin-bottom: 18px;
      font-weight: 700;
      color: #ffffff;
    }

    .footer-box p,
    .footer-box a {
      color: #c0c0c0;
      line-height: 1.6;
      text-decoration: none;
      transition: 0.2s;
    }

    .footer-box a {
      display: block;
      margin-bottom: 10px;
    }

    .footer-box a:hover {
      color: #ffffff;
      transform: translateX(4px);
    }

    .footer-bottom {
      text-align: center;
      padding: 24px;
      border-top: 1px solid #1f1f1f;
      font-size: 0.85rem;
      color: #a0a0a0;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 34px;
      }
      .section-title {
        font-size: 1.5rem;
      }
    }

    .source{
      text-decoration: underline;
      color: #0d47a1;
    }
    
   @media print {
  body * {
    display: none !important;
  }

  body::before {
    content: "Printing Disabled";
    display: block !important;
    font-size: 30px;
    text-align: center;
    margin-top: 100px;
  }
}