* { box-sizing: border-box; }

body {
  margin: 0;
  height: 100vh;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cat-move {
  transition: transform 0.9s cubic-bezier(.4,0,.2,1);
}

.cat-move.out {
  transform: translateX(-210px);
}

@media (max-width: 768px) {
  .cat-move {
    bottom: 0;
    top: auto;
  }

  .cat-move.out {
    transform: translateY(-200px);
  }
}

/* ===== KEDİ ===== */
.cat {
  width: 280px;
  height: 240px;
  position: relative;
}

.cat-head {
  width: 100%;
  height: 200px;
  background:
    radial-gradient(circle at 30% 30%, #2a2a2a, #000 65%),
    radial-gradient(circle at 70% 40%, #3a3a3a, #000 70%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

/* ===== KULAKLAR – DAHA HIZLI ===== */
.ear {
  position: absolute;
  top: -28px;
  width: 70px;
  height: 70px;
  background: #000;
  border-radius: 25% 75% 25% 75%;
  animation: earTwitch 3s infinite;
}

.ear.left { left: 30px; }
.ear.right { right: 30px; animation-delay: 1.5s; }

@keyframes earTwitch {
  0%,80%,100% { transform: rotate(0deg); }
  85% { transform: rotate(8deg); }
  90% { transform: rotate(-6deg); }
}

/* ===== GÖZLER ===== */
.eye {
  position: absolute;
  top: 75px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.eye.left { left: 70px; }
.eye.right { right: 70px; }

/* göz bebekleri – DAHA HIZLI */
.pupil {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 10px;
  height: 22px;
  background: #000;
  border-radius: 5px;
  animation: lookAround 2.5s infinite;
}

@keyframes lookAround {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-4px,2px); }
  50%  { transform: translate(4px,1px); }
  75%  { transform: translate(0,-3px); }
  100% { transform: translate(0,0); }
}

/* göz kırpma – daha sık */
.eye::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleY(0);
  transform-origin: center;
  animation: blink 4s infinite;
}

@keyframes blink {
  0%,92%,100% { transform: scaleY(0); }
  94%,96% { transform: scaleY(1); }
}

/* ===== BURUN ===== */
.nose {
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 14px;
  background: #f3a6b5;
  border-radius: 50% 50% 60% 60%;
}

/* ===== AĞIZ ===== */
.mouth {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 20px;
  height: 6px;
  border-bottom: 2px solid #444;
  border-radius: 50%;
  transform: translateX(-50%);
}

/* ===== BIYIK ===== */
.whisker {
  position: absolute;
  top: 145px;
  width: 55px;
  height: 2px;
  background: #fff;
}

.whisker.left {
  left: 15px;
  box-shadow: 0 7px #fff, 0 -7px #fff;
}

.whisker.right {
  right: 15px;
  box-shadow: 0 7px #fff, 0 -7px #fff;
}

/* ===== CARD ===== */
.card {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 420px;
  padding: 48px 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.card.down {
  transform: translateY(70px);
}

/* ===== YAZI ===== */
.watching {
text-align: center;
    position: fixed;
    bottom: 30px;
    right: -1%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.watching.show {
  opacity: 1;
}

/* ===== FORM ===== */
h1 { font-size: 2.4rem; margin-bottom: 12px; }

.subtitle {
  color: #555;
  line-height: 1.6;
  margin-bottom: 36px;
}

input, button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
}

input { border: 1px solid #ddd; margin-bottom: 14px; }

button {
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
}

footer {
  margin-top: 40px;
  font-size: 0.7rem;
  color: #777;
}

header {
    width: 100%;
    height: auto;
    padding: 35px 0px;
    float: left;
    display: inline-block;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    z-index: 9999;
    background: rgba(255,255,255,0.95);
    box-shadow:0 22px 70px rgba(0,0,0,0.1);
}

header ul {
  margin: 0px;
  padding: 0px;
}

header ul li {
  display: inline-block;
  margin: 0px 10px;
}

header ul li a {
  text-decoration: none;
  color: rgb(40,40,40);
}

.entry {
  padding: 36px 0;
  border-bottom: 1px solid #eee;
}

.entry:last-child {
  border-bottom: none;
}

.text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.cat-eyes-sub {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  opacity: 0.75;
}

.eye-sub {
  width: 20px;
  height: 12px;
  background: #000;
  border-radius: 0 0 12px 12px;
  animation: blink 6s infinite;
}

.eye-sub:nth-child(2) { animation-delay: 3s; }

@keyframes blink {
  0%,92%,100% { height: 12px; }
  94%,96% { height: 2px; }
}