#gabster-boot-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@keyframes gbs-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.gbs-skel {
  background: #e2e8f0;
  border-radius: 999px;
  animation: gbs-pulse 1.5s ease-in-out infinite;
}

.gbs-header {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  padding: 20px 20px 48px;
  background: linear-gradient(135deg, #3d4efc 0%, #5869fd 40%, #7c3aed 100%);
}

.gbs-header-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 28px 28px;
}

.gbs-header-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gbs-brand {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.gbs-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.gbs-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.gbs-lang-pill {
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.gbs-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -24px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 20px 20px;
}

.gbs-card {
  width: 90%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}

.gbs-info-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1a2140;
}

.gbs-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.gbs-info-lines {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gbs-line {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.gbs-line-name {
  width: 112px;
}

.gbs-line-desc {
  width: 80px;
  height: 10px;
}

.gbs-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gbs-btn {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.gbs-btn-light {
  background: rgba(255, 255, 255, 0.18);
}

.gbs-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.gbs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.gbs-row-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
}

.gbs-row-lines {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gbs-row-lines .gbs-line {
  width: 70%;
  background: #e2e8f0;
}

.gbs-row-lines .gbs-line-sm {
  width: 40%;
  height: 10px;
}

.gbs-row:nth-child(2) .gbs-line {
  width: 60%;
}

.gbs-row:nth-child(3) .gbs-line {
  width: 65%;
}

.gbs-footer {
  flex-shrink: 0;
  padding: 0 16px 16px;
  position: relative;
  z-index: 1;
}

.gbs-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3d4efc 0%, #5869fd 40%, #7c3aed 100%);
}

.gbs-footer-brand {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.gbs-footer-brand span {
  margin-left: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.gbs-footer-tagline {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
}

.gbs-footer-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.gbs-visit {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.gbs-copyright {
  margin: 0;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}
