#smooth-wrapper {
  height: 100%;
  overflow: hidden;
}
#smooth-content {
  will-change: transform;
}

/* Typewriter Effect */
.typewriter-text {
  min-height: 4em;
  line-height: 1.4;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}
.typewriter-text .cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--primary, #a1ff75);
  margin-left: 5px;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Dropdown Menu */
.tp-header__style-1 .tp-main__menu ul li .tp-submenu {
  background-color: #111 !important;
  background-image: linear-gradient(135deg, #111 0%, #1a1a1a 100%) !important;
  border: 1px solid rgba(161, 255, 117, 0.15) !important;
  border-top: 2px solid var(--primary, #a1ff75) !important;
  border-radius: 0 0 12px 12px;
  padding: 12px !important;
  width: auto !important;
  min-width: 220px;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px);
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li {
  margin-bottom: 2px !important;
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li:last-child {
  margin-bottom: 0 !important;
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li a,
.tp-header__style-1 .tp-main__menu ul li .tp-submenu li a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 16px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary, #a1ff75);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li a:hover,
.tp-header__style-1 .tp-main__menu ul li .tp-submenu li:hover > a,
.tp-header__style-1 .tp-main__menu ul li .tp-submenu li a:hover {
  color: #fff !important;
  background-color: rgba(161, 255, 117, 0.08) !important;
}
.tp-header__style-1 .tp-main__menu ul li .tp-submenu > li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
