* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: margin-left 0.3s ease;
  scroll-behavior: smooth;
  /* background: linear-gradient(to bottom, #000, #333); */
}
/* Chrome, Safari, Edge */
body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  background: transparent;
  /* background: var(--navbar-bg); */
  transition: all 0.4s ease;
}

/* 🔥 Scroll Glass Effect */
.navbar.scrolled {
  background: var(--scroller-navbar-bg);
  /* background: rgba(255, 255, 255, 0.15); */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff6b00;
}

/* NAV LINKS */
nav a {
  margin: 0 12px;
  text-decoration: none;
  /* color: #ffffff; */
  color: var(--text);
  font-size: 15px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: var(--nav-hover);
}

/* MENU ICON */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--menu-icon-color);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    padding: 15px;
    width: 220px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 10px 0;
  }

  .menu-icon {
    display: block;
  }
}