/* Navigation Bar Styles */
.nav-container {
    width: 100%;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    width: 1139px;
    height: 60px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-button {
    width: 117px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    margin: 10px 10px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-button {
    width: 100%;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.mobile-button:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Content Styles */
.content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.section {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-btn {
  width: 117px;
  height: 38px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(164deg, #FF5900 0%, #0000, #134B9D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.inner-nav-btn-desktop {
  width: 115px;
  height: 36px;
  background: linear-gradient(5deg, #000000, #00000096);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-nav-btn-desktop p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
}

.nav-btn {
  width: 117px;
  height: 38px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF5900 0%, #134B9D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.inner-nav-btn {
  width: 115px;
  height: 36px;
  background: black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-nav-btn p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
}

/* ✨ Outer top glow for both desktop and nav buttons */
.desktop-btn::before,
.nav-btn::before {
  content: "";
  position: absolute;
  top: -4px; /* move glow outside */
  left: 0;
  width: 100%;
  height: 12px; /* height of glow area */
  background: linear-gradient(
    90deg,
    rgba(255, 175, 2, 0) 0%,
    rgb(255, 166, 2) 50%,
    rgba(255, 179, 0, 0) 100%
  );
  filter: blur(12px);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Make sure button containers can show the outside glow */
.desktop-btn,
.nav-btn {
  position: relative;
  overflow: visible; /* let glow appear outside */
}

/* glowing pulse animation (reuse your existing one) */
@keyframes glowPulse {
  0%, 100% { opacity: 0.9; filter: blur(6px); }
  50% { opacity: 0.5; filter: blur(8px); }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .navbar {
        width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .desktop-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 0 20px;
    }

    .mobile-menu.active {
        display: flex;
    }

    h1 {
        font-size: 36px;
    }
}