/* === Tulipsoft 403 page (copy/paste) === */
:root{
  --tulip-bg: #000000;
  --tulip-panel-1: #0b0d10;
  --tulip-panel-2: #0f1318;

  --tulip-text: #f3f4f6;
  --tulip-muted: #a6adbb;

  --tulip-brand: #fb670b;
  --tulip-brand-2: #e65f0c;

  --tulip-border: rgba(255,255,255,0.10);
  --tulip-border-soft: rgba(255,255,255,0.06);
  --tulip-shadow: rgba(0,0,0,0.55);
  --tulip-ring: rgba(251,103,11,0.35);

  --tulip-radius: 18px;
}

body.tulip-error{
  margin: 0;
  min-height: 100vh;
  background: var(--tulip-bg);
  color: var(--tulip-text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.45;
}

body.tulip-error *{
  box-sizing: border-box;
}

.tulip-wrap{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
}

.tulip-wrap::before{
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(closest-side at 25% 30%, rgba(251,103,11,0.18), transparent 55%),
    radial-gradient(closest-side at 75% 70%, rgba(230,95,12,0.12), transparent 55%);
  filter: blur(10px);
  pointer-events: none;
}

.tulip-card{
  width: min(760px, 100%);
  background: linear-gradient(180deg, var(--tulip-panel-1), var(--tulip-panel-2));
  border: 1px solid var(--tulip-border);
  border-radius: var(--tulip-radius);
  box-shadow: 0 24px 60px var(--tulip-shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.tulip-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251,103,11,0.18),
    rgba(230,95,12,0.06),
    rgba(255,255,255,0.02)
  );
  opacity: 0.65;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

.tulip-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.tulip-brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.tulip-brand img{
  height: 28px;
  width: auto;
  display: block;
}

.tulip-code{
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  color: rgba(243,244,246,0.85);
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
  margin-top: -2px;
}

.tulip-card h1{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.tulip-lead{
  margin: 0 0 18px;
  color: var(--tulip-muted);
  font-size: 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
  max-width: 62ch;
}

.tulip-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
  position: relative;
  z-index: 1;
}

.tulip-btn{
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease;
  user-select: none;
  color: inherit;
  background: none;
}

.tulip-btn:focus{ outline: none; }
.tulip-btn:focus-visible{
  box-shadow: 0 0 0 4px var(--tulip-ring);
}

.tulip-btn--primary{
  background: linear-gradient(180deg, var(--tulip-brand), var(--tulip-brand-2));
  color: #0b0d10;
  box-shadow: 0 12px 22px rgba(251,103,11,0.20);
}

.tulip-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(251,103,11,0.24);
}

.tulip-btn--ghost{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--tulip-text);
}

.tulip-btn--ghost:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.tulip-meta{
  margin: 0;
  color: rgba(166,173,187,0.92);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.tulip-meta a{
  color: var(--tulip-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(251,103,11,0.55);
  padding-bottom: 1px;
}

.tulip-meta a:hover{
  border-bottom-color: rgba(251,103,11,0.95);
}

.tulip-footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--tulip-border-soft);
  color: rgba(166,173,187,0.75);
  font-size: 12px;
  position: relative;
  z-index: 1;
}
