  *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  text-decoration: none;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

  /* NAVBAR */
.elite-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  background: rgba(0, 0, 0, 0.25);   /* semi-transparent dark */
  backdrop-filter: blur(12px);       /* ← this creates the blur */
  -webkit-backdrop-filter: blur(12px); /* for Safari/iOS support */
  border-bottom: 1px solid rgba(200, 200, 200, 0.12); /* optional subtle line */
  z-index: 1000;
}

    .nav-container {
      max-width: 1400px;
      height: 100%;
      margin: auto;
      padding: 0 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* LOGO */
    .logo img {
      height: 50px;
    }

    /* HAMBURGER */
    .hamburger {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(198, 163, 79, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .3s;
      z-index: 3000;
    }

    .hamburger:hover {
      background: #c6a34f;
    }

    .hamburger span {
      width: 25px;
      height: 2px;
      background: #fff;
      position: relative;
      transition: .4s cubic-bezier(.68, -0.55, .27, 1.55);
    }

    .hamburger span::before,
    .hamburger span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      transition: .4s cubic-bezier(.68, -0.55, .27, 1.55);
    }

    .hamburger span::before {
      top: -7px;
    }

    .hamburger span::after {
      top: 7px;
    }

    .hamburger.active span {
      background: transparent;
    }

    .hamburger.active span::before {
      transform: rotate(45deg);
      top: 0;
    }

    .hamburger.active span::after {
      transform: rotate(-45deg);
      top: 0;
    }

    /* OVERLAY */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      opacity: 0;
      visibility: hidden;
      transition: .4s;
      z-index: 1500;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* SIDE PANEL */
    .side-menu {
      position: fixed;
      top: 0;
      right: -420px;
      width: 380px;
      max-width: 100%;
      height: 100vh;
      background: #000;
      border-left: 1px solid rgba(198, 163, 79, .25);
      padding: 35px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: .55s cubic-bezier(.77, 0, .18, 1);
      z-index: 2000;
    }

    .side-menu.active {
      right: 0;
    }

    /* CLOSE */
    .close-btn {
      position: absolute;
      top: 22px;
      left: 25px;
      width: 45px;
      height: 45px;
      border: 1px solid rgba(198, 163, 79, .5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .3s;
    }

    .close-btn i {
      color: #c6a34f;
      font-size: 18px;
    }

    .close-btn:hover {
      background: #c6a34f;
    }

    .close-btn:hover i {
      color: #000;
    }

    /* LINKS */
    .side-links {
      margin-top: 80px;
      text-align: right;
    }

    .side-links a {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: 32px;
      padding: 14px 0;
      font-weight: bold;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      opacity: 0.6;
      transition: .35s;
    }

    .side-links a:hover {
      color: #d8ab41;
      padding-right: 18px;
      opacity: 1;
    }

    /* SOCIAL */
    .social-icons {
      display: flex;
      gap: 18px;
      margin: 20px 0;
    }

    .social-icons a {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(198, 163, 79, .45);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c6a34f;
      font-size: 16px;
      transition: .35s;
    }

    .social-icons a:hover {
      background: #c6a34f;
      color: #000;
      box-shadow: 0 0 12px rgba(198, 163, 79, .6);
    }

    /* FOOTER */
    .side-footer {
      border-top: 1px solid #fff;
      padding-top: 22px;
    }

    .side-footer a {
      display: inline-block;
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      font-size: 14px;
      transition: .35s;
    }
