/* Layout.css - Header & Logo */
.kp-app-header {
  background: rgba(15, 8, 20, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #3a2a42;
  position: sticky;
  top: 0;
  z-index: 100;
}

.kp-app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo Rounded Pink */
.kp-brand-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.kp-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2d95, #ff6ec4);
  color: white;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(255, 45, 149, 0.7);
  line-height: 1;
}

.kp-brand-icon:hover {
  box-shadow: 0 0 35px rgba(255, 45, 149, 0.9);
  transform: scale(1.05);
}

.kp-brand-title {
  font-size: 1.75rem;
  font-weight: 800;
}

.kp-brand-subtitle {
  font-size: 0.95rem;
  color: #f8c4e0;
}

/* Hamburger */
.kp-hamburger {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
}

.kp-hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}