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

:root {
  --bg-1: #ffeaf4;
  --bg-2: #fff7e9;
  --accent-soft: #ffc6da;
  --accent-strong: #f06b88;
  --ink: #48313d;
  --ink-soft: #7e5869;
  --paper: #fffdf9;
}

body {
  min-height: 100vh;
  padding: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  animation: fadeInBody 0.8s ease-out;
  overflow-x: hidden;
  background: linear-gradient(135deg, #ffe4f0 0%, #fff5e4 100%);
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.75) 0, transparent 1px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
  z-index: 0;
  animation: textureFloat 25s ease-in-out infinite;
}

@keyframes textureFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.03);
  }
  66% {
    transform: translate(-12px, 15px) scale(0.97);
  }
}

/* Modern Asymmetric Layout */
.container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .container {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Left Side - Video Focus */
.video-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(255, 234, 244, 0.6), rgba(255, 247, 233, 0.4));
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .video-section {
    padding: 60px 40px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  animation: videoSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes videoSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.video-frame {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow:
    0 30px 80px rgba(191, 132, 132, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 40px 100px rgba(191, 132, 132, 0.5),
    0 0 0 1px rgba(255, 255, 255, 1);
}

.video-frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 221, 230, 0.95);
  box-shadow: 0 8px 16px rgba(193, 121, 132, 0.3);
  z-index: -1;
}

.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  transform: scale(0.98);
}

.play-button {
  pointer-events: auto;
  cursor: pointer;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 20%, #fffdfb, #ffb6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 40px rgba(181, 88, 110, 0.8),
    0 0 0 3px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: breathe 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.play-button::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, transparent, rgba(255, 182, 201, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotateRing 4s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.play-button:hover::before {
  opacity: 1;
}

.play-button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow:
    0 24px 50px rgba(181, 88, 110, 0.9),
    0 0 0 4px rgba(255, 255, 255, 1);
}

.play-button:active {
  transform: translateY(0) scale(1.05);
}

.play-icon {
  font-size: 2rem;
  margin-left: 4px;
  color: #7b2f3b;
  position: relative;
  z-index: 1;
}

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

.video-label {
  margin-top: 20px;
  text-align: center;
  font-family: "Dancing Script", "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--ink-soft);
  animation: labelFadeIn 1s ease-out 0.5s both;
}

@keyframes labelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right Side - Content */
.content-section {
  position: relative;
  padding: 40px 24px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .content-section {
    padding: 60px 48px;
  }
}

.content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  animation: contentSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes contentSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  margin-bottom: 32px;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  animation: taglineFadeIn 0.8s ease-out both;
}

@keyframes taglineFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(240, 107, 136, 0.9);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(240, 107, 136, 0.9);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 24px rgba(240, 107, 136, 1);
  }
}

h1 {
  font-family: "Dancing Script", "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: titleFadeIn 1s ease-out 0.3s both;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
  animation: subtitleFadeIn 1s ease-out 0.5s both;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: metaFadeIn 1s ease-out 0.7s both;
}

@keyframes metaFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.meta-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 243, 235, 0.95);
  border: 1px solid rgba(255, 204, 183, 0.95);
  color: #8d5a4c;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meta-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 204, 183, 0.3);
}

.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 32px;
  animation: textFadeIn 1s ease-out 0.9s both;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.steps {
  margin-bottom: 32px;
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 248, 244, 0.6);
  border: 1px solid rgba(255, 213, 198, 0.3);
  transition: all 0.3s ease;
  animation: stepFadeIn 0.6s ease-out both;
  opacity: 0;
}

.step:nth-child(1) {
  animation-delay: 1.1s;
}

.step:nth-child(2) {
  animation-delay: 1.3s;
}

.step:nth-child(3) {
  animation-delay: 1.5s;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step:hover {
  background: rgba(255, 248, 244, 0.9);
  border-color: rgba(255, 213, 198, 0.6);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(191, 132, 132, 0.15);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffece0, #ffd8c8);
  color: #b8634a;
  border: 2px solid #ffc6aa;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-num {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 6px 16px rgba(184, 99, 74, 0.4);
}

.step-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #ffabc1, #ffd08d);
  color: #5d2533;
  box-shadow:
    0 12px 32px rgba(192, 97, 118, 0.6),
    0 0 0 1px rgba(255, 231, 219, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
  box-shadow:
    0 20px 50px rgba(192, 97, 118, 0.75),
    0 0 0 1px rgba(255, 239, 230, 1);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px dashed rgba(201, 137, 109, 0.9);
  background: rgba(255, 246, 238, 0.95);
  color: #8c5a48;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.btn-secondary:hover {
  background: #fff0e2;
  border-style: solid;
  border-color: rgba(201, 137, 109, 1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(201, 137, 109, 0.25);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn-icon {
  font-size: 1.1rem;
}

.footer-text {
  font-size: 0.85rem;
  color: #a06b5d;
  line-height: 1.6;
}

.footer-text strong {
  color: #6f4237;
}

/* Decorative Elements */
.decorative-heart {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 40px;
  color: rgba(240, 107, 136, 0.4);
  transform: rotate(15deg);
  animation: heartBeat 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heartBeat {
  0%, 100% {
    transform: rotate(15deg) scale(1);
  }
  25% {
    transform: rotate(18deg) scale(1.15);
  }
  50% {
    transform: rotate(12deg) scale(1.05);
  }
  75% {
    transform: rotate(18deg) scale(1.15);
  }
}

@media (max-width: 1023px) {
  .video-section {
    min-height: 60vh;
    padding: 40px 20px;
  }

  .content-section {
    min-height: auto;
    padding: 40px 24px;
  }

  .video-frame {
    transform: rotate(-0.5deg);
  }
}
