/* ===== БАЗА ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #ff61a4;
  color: white;
  min-height: 100vh;
  padding: 20px;
}

/* ===== КОНТЕЙНЕР ===== */
.container {
  max-width: 420px;
  margin: auto;
  text-align: center;
  animation: fadeIn 2s ease;
}

/* ===== ЗАГОЛОВОК И ТЕКСТ ===== */
h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* ===== ФОТО-СЛАЙДЕР (БЕЗ МАСКИ) ===== */
.photo-slider {
  position: relative;
  width: 260px;
  height: 360px;
  margin: 40px auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  box-shadow:
    0 0 35px rgba(255,255,255,0.35),
    0 0 70px rgba(255,122,217,0.25);
  animation: float 4s ease-in-out infinite;
}

.photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.photo-text {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 0 12px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* ===== ВИДЕО (ВЕРТИКАЛЬНО) ===== */
.video-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  margin: 40px auto;
  border-radius: 28px;
  overflow: hidden;
  background: black;
  box-shadow: 0 0 40px rgba(255,255,255,0.35);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== КНОПКА ===== */
.letter-btn {
  display: inline-block;
  margin: 32px auto 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: white;
  color: #ff61a4;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255,255,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.letter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255,255,255,0.6);
}

/* ===== ЦИТАТА И ФУТЕР ===== */
.quote {
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
  margin-top: 20px;
}

footer {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.4;
  text-align: center;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ===== МОБИЛКА ===== */
@media (max-width: 480px) {
  .photo-slider {
    width: 220px;
    height: 320px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 14px;
  }
}
