/* Top right auth navbar */
.auth-nav {
  position: absolute;
  top: 56px; /* Marquee çubuğuyla çakışmaması için aşağı alındı */
  right: 24px;
  z-index: 100;
}

.btn-auth-small {
  background: rgba(10, 12, 20, 0.7);
  border: 1px solid rgba(191,95,255,0.4);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 0 10px rgba(191,95,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-auth-small:hover {
  background: rgba(191,95,255,0.15);
  border-color: rgba(191,95,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(191,95,255,0.4), inset 0 0 15px rgba(191,95,255,0.3);
}

/* Logged in badge */
.auth-profile-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 19, 32, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(191,95,255,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.auth-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(191,95,255,0.4);
}
.auth-info {
  display: flex;
  flex-direction: column;
}
.auth-name-row {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auth-plan-tag {
  font-size: 9px;
  background: rgba(191,95,255,0.2);
  color: #c09fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.auth-status {
  font-size: 10px;
  color: #7a8090;
  margin-top: 2px;
}

/* Modal extra styling */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  box-shadow: 0 0 20px rgba(191,95,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}
.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(191,95,255,0.6);
}
.btn-google img {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

@media (max-width: 600px) {
  .auth-nav {
    top: 50px; /* Mobil sürümde de marquee altına alındı */
    right: 16px;
  }
}
