.navbar-gr {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--gr-border);
  padding: 1rem 0;
}

.logo-text {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
}

/* Dropdown Usuario */
.user-dropdown .btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gr-border);
  color: white;
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-dropdown .dropdown-menu {
  background: var(--gr-card-bg);
  border: 1px solid var(--gr-border);
  border-radius: 15px;
  padding: 10px;
  min-width: 220px;
}

.user-dropdown .dropdown-item {
  color: white;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.user-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.badge-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
}

/* Hero Section */ /* Hero Section */
.hero-video-container {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Contenedor del iframe */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 */
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* El iframe ocupa todo */
.video-bg iframe {
  width: 100%;
  height: 100%;
}

/* Overlay */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--gr-black) 5%, transparent 100%);
  z-index: 2;
}

/* Contenido encima */
.hero-video-content {
  position: relative;
  z-index: 3;
}
