.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2d0036;
  padding: 0 40px;
  height: 64px;
  box-shadow: 0 2px 16px #ff3fa455;
  position: relative;
  z-index: 100;
}
.navbar .logo {
  height: 40px;
  margin-right: 12px;
  filter: drop-shadow(0 0 8px #ff8edb);
}
.navbar .logo-text {
  color: #ff8edb;
  font-size: 1.4em;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.navbar-links a {
  color: #ff8edb;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.2s, text-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff8edbcc;
}
.agent-btn {
  background: #ff3fa4;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 1em;
  animation: navPulse 1.2s infinite alternate, navScale 1.2s infinite alternate;
  cursor: pointer;
  box-shadow: 0 0 24px #ff3fa488, 0 2px 12px #ff3fa466;
  margin-left: 16px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}
@keyframes navPulse {
  0% { box-shadow: 0 0 16px #ff3fa488, 0 2px 12px #ff3fa466; }
  100% { box-shadow: 0 0 40px #ff8edbcc, 0 2px 24px #ff3fa4cc; }
}
@keyframes navScale {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.agent-btn:hover {
  background: #ff8edb;
  color: #2d0036;
  box-shadow: 0 0 48px #ff8edbcc;
  transform: scale(1.12);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 16px;
  z-index: 101;
}
.hamburger span {
  width: 28px;
  height: 4px;
  background: #ff8edb;
  border-radius: 2px;
  transition: background 0.2s;
}
.mobile-register-btn {
  display: none;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 92vw;
    max-width: 380px;
    height: 100vh;
    background: rgba(44,0,54,0.92);
    backdrop-filter: blur(8px);
    box-shadow: -4px 0 32px #ff3fa455;
    flex-direction: column;
    align-items: center;
    padding: 36px 0 24px 0;
    z-index: 2000;
    border-radius: 28px 0 0 28px;
    transition: right 0.3s cubic-bezier(.23,1.02,.67,1.01);
    overflow-y: auto;
    gap: 0;
  }
  .navbar-links.open {
    display: flex;
    justify-content: flex-start;
  }
  .navbar-links a, .navbar-links .nav-btn, .navbar-links .agent-btn {
    display: block !important;
    width: 90% !important;
    margin: 18px auto !important;
    padding: 12px 0 !important;
    border-radius: 24px !important;
    font-weight: bold !important;
    font-size: 1.08em !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #fff !important;
    text-shadow: 0 1px 4px #ff3fa455, 0 0 2px #0008 !important;
    letter-spacing: 0.5px !important;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s !important;
  }
  .navbar-links .nav-btn, .navbar-links .agent-btn {
    background: linear-gradient(135deg, #ff3fa4 60%, #ff8edb 100%) !important;
    box-shadow: 0 2px 12px #ff8edb55, 0 1px 4px #ff3fa455 !important;
    color: #fff !important;
  }
  .navbar-links a:hover, .navbar-links .nav-btn:hover, .navbar-links .agent-btn:hover {
    background: linear-gradient(135deg, #ff8edb 60%, #ff3fa4 100%) !important;
    color: #2d0036 !important;
    text-shadow: 0 1px 4px #fff8, 0 0 2px #ff8edb !important;
    box-shadow: 0 0 24px #ff8edbcc, 0 2px 8px #ff3fa4cc !important;
    transform: scale(1.06) rotate(-2deg) !important;
  }
  .navbar-links a:last-child, .navbar-links .nav-btn:last-child, .navbar-links .agent-btn:last-child {
    margin-bottom: 0;
  }
  .mobile-register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff3fa4 60%, #ff8edb 100%);
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    border: none;
    border-radius: 20px;
    padding: 7px 18px;
    margin: 0 6px;
    box-shadow: 0 2px 8px #ff8edb33, 0 1px 2px #ff3fa433;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
    z-index: 102;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.05em;
    min-width: 56px;
    max-width: 120px;
    overflow: hidden;
  }
  .mobile-register-btn:hover {
    background: linear-gradient(135deg, #ff8edb 60%, #ff3fa4 100%);
    color: #2d0036;
    box-shadow: 0 0 16px #ff8edbcc, 0 2px 6px #ff3fa4cc;
    transform: scale(1.04) rotate(-1deg);
  }
}
@media (max-width: 800px) {
  .navbar-links {
    display: none;
  }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(45,0,54,0.98);
    box-shadow: 0 2px 32px #ff3fa455;
    z-index: 2000;
    padding: 80px 0 0 0;
    animation: navMenuIn 0.3s;
  }
  .navbar-links.open a, .navbar-links.open button {
    width: 100vw;
    padding: 22px 0;
    font-size: 1.25em;
    justify-content: center;
    border-bottom: 1px solid #ff8edb22;
    text-align: center;
    background: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .navbar-links.open .agent-btn {
    margin-left: 0;
    margin-top: 12px;
    font-size: 1.18em;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 0 32px #ff3fa488;
  }
  .hamburger {
    display: flex;
  }
}
@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero {
  background: radial-gradient(ellipse at top left, #2d0036 0%, #1a0022 100%);
  text-align: center;
  padding: 64px 16px 32px;
  color: #ff8edb;
  position: relative;
}
.hero .logo {
  width: 80px;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 16px #ff8edb88);
}
.hero h1 {
  font-size: 2.2em;
  color: #ff8edb;
  margin: 0 0 12px;
  text-shadow: 0 0 16px #ff8edb88;
  font-weight: bold;
}
.hero .subtitle {
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 0 8px #ff8edb88;
}
.hero .cta-agent {
  margin-top: 24px;
}
.nav-close-btn {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2100;
  background: #2d0036;
  color: #ff8edb;
  border: none;
  font-size: 2.4em;
  font-weight: bold;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 24px #ff3fa488;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.nav-close-btn:hover {
  background: #ff8edb;
  color: #2d0036;
  box-shadow: 0 0 40px #ff8edbcc;
  transform: scale(1.1);
}
@media (max-width: 800px) {
  .nav-close-btn {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-register-btn {
    display: none !important;
  }
} 