* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ffe4c9 0%, #ffd4a8 50%, #ffb88c 100%);
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Заголовок */
.title {
  font-size: 5em;
  color: #dec417;
  text-shadow: 10px 2px 4px rgb(232, 30, 30);
  margin-bottom: 10px;
  animation: bounce 2s ease-in-out infinite;
}

.subtitle {
  font-size: 1.4em;
  color: #a0522d;
  margin-bottom: 30px;
  font-style: italic;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Сцена с котом */
.cat-scene {
  position: relative;
  width: 280px;
  height: 300px;
  margin: 0 auto 40px;
}

/* Корона */
.crown {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.crown-base {
  width: 90px;
  height: 25px;
  background: linear-gradient(to bottom, #ffd700, #daa520);
  border-radius: 5px;
  border: 2px solid #b8860b;
  position: relative;
  z-index: 2;
}

.crown-point {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 30px solid #ffd700;
  filter: drop-shadow(1px 1px 1px #b8860b);
  z-index: 1;
}

.crown-point::after {
  content: '';
  position: absolute;
  top: 8px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #ff4500;
  border-radius: 50%;
  box-shadow: 0 0 5px #ff4500;
}

.crown-point.p1 { left: -5px; top: -20px; }
.crown-point.p1::after { background: #ff0000; }
.crown-point.p2 { left: 13px; top: -28px; }
.crown-point.p2::after { background: #00bfff; }
.crown-point.p3 { left: 31px; top: -35px; }
.crown-point.p3::after { background: #00ff00; width: 14px; height: 14px; left: -7px; }
.crown-point.p4 { left: 49px; top: -28px; }
.crown-point.p4::after { background: #4800ff; }
.crown-point.p5 { left: 67px; top: -20px; }
.crown-point.p5::after { background: #ff0000; }

/* Голова кота */
.cat-head {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 160px;
  background: #e78504;
  border-radius: 50% 50% 45% 45%;
  z-index: 5;
  box-shadow: inset -5px -5px 15px rgba(0,0,0,0.1),
              5px 5px 15px rgba(0,0,0,0.2);
}

/* Уши */
.cat-ear {
  position: absolute;
  top: -25px;
  width: 55px;
  height: 60px;
  background: #e8c89e;
  z-index: 4;
}

.cat-ear.left {
  left: 15px;
  border-radius: 50% 50% 0 0;
  transform: rotate(-15deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.cat-ear.right {
  right: 15px;
  border-radius: 50% 50% 0 0;
  transform: rotate(15deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.cat-ear-inner {
  position: absolute;
  top: -15px;
  width: 30px;
  height: 35px;
  z-index: 5;
}

.cat-ear-inner.left {
  left: 28px;
  background: #ffb6c1;
  transform: rotate(-15deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.cat-ear-inner.right {
  right: 28px;
  background: #ffb6c1;
  transform: rotate(15deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Глаза */
.cat-eye {
  position: absolute;
  top: 55px;
  width: 40px;
  height: 45px;
  background: #8B4513;
  border-radius: 50%;
  border: 3px solid #5C3317;
  z-index: 6;
  overflow: hidden;
  animation: blink 4s ease-in-out infinite;
}

.cat-eye.left { left: 28px; }
.cat-eye.right { right: 28px; }

.pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 35px;
  background: #000;
  border-radius: 50%;
}

.pupil::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 3px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

/* Нос */
.cat-nose {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 14px;
  background: #ff69b4;
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  z-index: 6;
}

/* Рот */
.cat-mouth {
  position: absolute;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  border-bottom: 3px solid #8b4513;
  border-left: 3px solid #8b4513;
  border-right: 3px solid #8b4513;
  border-radius: 0 0 50% 50%;
  z-index: 6;
}

/* Усы */
.cat-whisker {
  position: absolute;
  top: 100px;
  width: 60px;
  height: 2px;
  background: #8b4513;
  z-index: 6;
}

.cat-whisker.w1 { left: -30px; transform: rotate(-5deg); }
.cat-whisker.w2 { left: -35px; top: 110px; transform: rotate(5deg); }
.cat-whisker.w3 { right: -30px; transform: rotate(5deg); }
.cat-whisker.w4 { right: -35px; top: 110px; transform: rotate(-5deg); }

/* Монокль */
.monocle {
  position: absolute;
  top: 48px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 4px solid #ffd700;
  border-radius: 50%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6), inset 0 0 6px rgba(255, 215, 0, 0.3);
}

.monocle::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: #ffd700;
  border-radius: 0 0 5px 5px;
}

.monocle::after {
  content: '';
  position: absolute;
  bottom: -55px;
  left: 50%;
  width: 3px;
  height: 55px;
  background: linear-gradient(to bottom, #ffd700, #daa520);
  border-radius: 2px;
  transform: rotate(8deg);
}

.monocle-chain {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
  border-top: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Щёчки */
.cat-blush {
  position: absolute;
  top: 90px;
  width: 25px;
  height: 15px;
  background: rgba(255, 182, 193, 0.6);
  border-radius: 50%;
  z-index: 6;
}

.cat-blush.left { left: 15px; }
.cat-blush.right { right: 15px; }

/* Тело */
.cat-body {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 90px;
  background: #e8c89e;
  border-radius: 50% 50% 50% 50%;
  z-index: 3;
  box-shadow: inset -5px -5px 10px rgba(0,0,0,0.1);
}

/* Лапки */
.cat-paw {
  position: absolute;
  bottom: -15px;
  width: 45px;
  height: 25px;
  background: #e8c89e;
  border-radius: 0 0 50% 50%;
  z-index: 4;
}

.cat-paw.left { left: 15px; }
.cat-paw.right { right: 15px; }

/* Хвост */
.cat-tail {
  position: absolute;
  top: 230px;
  right: 40px;
  width: 100px;
  height: 30px;
  background: #e8c89e;
  border-radius: 50%;
  transform: rotate(-20deg);
  z-index: 2;
  animation: wag 2s ease-in-out infinite;
}

@keyframes wag {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(-10deg); }
}

/* Описание */
.description {
  margin: 40px 0;
}

.desc-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 3px solid #daa520;
}

.desc-card h2 {
  color: #8b4513;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.desc-card p {
  font-size: 1.2em;
  color: #5d4037;
  margin: 12px 0;
  text-align: left;
  padding-left: 20px;
}

.poem {
  margin-top: 25px !important;
  padding: 20px !important;
  background: linear-gradient(135deg, #fff8dc, #ffe4b5);
  border-radius: 15px;
  text-align: center !important;
  font-style: italic;
  border: 2px dashed #daa520;
  line-height: 1.8;
}

/* Whiskas секция */
.whiskas-section {
  margin-top: 40px;
  padding-bottom: 40px;
}

.whiskas-bag {
  display: inline-block;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bag-top {
  width: 100px;
  height: 15px;
  background: linear-gradient(to bottom, #4a0080, #6a0dad);
  border-radius: 10px 10px 0 0;
  margin: 0 auto;
}

.bag-body {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, #6a0dad, #8b00ff);
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.bag-label {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.whiskas-logo {
  font-weight: bold;
  font-size: 1.1em;
  color: #6a0dad;
  letter-spacing: 1px;
}

.whiskas-flavor {
  font-size: 0.8em;
  color: #ff6600;
  margin: 5px 0;
}

.whiskas-weight {
  font-size: 0.7em;
  color: #666;
}

.bag-cat-silhouette {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  clip-path: polygon(
    50% 0%,
    20% 20%,
    0% 60%,
    10% 100%,
    40% 80%,
    50% 100%,
    60% 80%,
    90% 100%,
    100% 60%,
    80% 20%
  );
}

.bag-bottom {
  width: 130px;
  height: 10px;
  background: linear-gradient(to bottom, #6a0dad, #4a0080);
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
  margin-left: -5px;
}

.whiskas-text {
  margin-top: 20px;
  font-size: 1.3em;
  color: #6a0dad;
  font-weight: bold;
}

/* Адаптив */
@media (max-width: 400px) {
  .title { font-size: 2em; }
  .desc-card p { font-size: 1em; }
  .cat-scene { transform: scale(0.8); }
}
