.ascii-cat-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  font-family: 'Courier New', Courier, monospace;
}

.ascii-cat-container {
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #222,
    0 0 10px rgba(13, 29, 38, 0.738),  
    0 0 60px rgba(63, 133, 176, 0.25);
  background: #0d0d0d;
  max-width: 700px;
  width: 100%;
}

.terminal-bar {
  background: #161616;
  border-bottom: 1px solid #1f1f1f;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot { width:12px; height:12px; border-radius:50%; display:inline-block; }
.dot.red    { background:#ff5f57; }
.dot.yellow { background:#febc2e; }
.dot.green  { background:#28c840; }

.terminal-title {
  color: #444;
  font-size: 0.72rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}

.ascii-stage {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.6rem 1.6rem;
  animation: flicker 9s infinite;
}

.ascii-stage pre {
  background-color: unset;
}

#asciiCat {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #62c4ff;
  text-shadow:
    0 0 5px rgba(98,196,255,0.65),
    0 0 14px rgba(98,196,255,0.25);
  white-space: pre;
  letter-spacing: 0.06em;
  min-height: 14em;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
}


.scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 2;
}

@keyframes flicker {
  0%,96%,100% { opacity:1; }
  97%          { opacity:0.88; }
  98%          { opacity:0.95; }
  99%          { opacity:0.91; }
}

.ascii-footer {
  background: #111;
  border-top: 1px solid #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.feed-btn {
  background: transparent;
  border: 1px solid #62c4ff;
  color: #62c4ff;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.15s, box-shadow 0.15s;
  text-shadow: 0 0 5px rgba(98,196,255,0.65);
}
.feed-btn:hover  { background: rgba(98,196,255,0.08); box-shadow: 0 0 10px rgba(98,196,255,0.2); }
.feed-btn:active { background: rgba(98,196,255,0.18); }
.feed-btn:disabled { opacity: 0.35; cursor: default; box-shadow: none; }

.hunger-label {
  color: #2a6644;
  font-size: 0.70rem;
  letter-spacing: 0.08em;
  transition: color 0.4s;
}
.hunger-label.happy { color: #62c4ff; text-shadow: 0 0 8px rgba(98,196,255,0.5); }
