* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Rose Saint-Valentin */
  background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ffb6d9 100%);
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

.content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

h1 {
  color: #ff1493;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-yes {
  background: #ff1493;
  color: white;
}

.btn-yes:hover {
  background: #ff69b4;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.btn-no {
  background: #ffb6d9;
  color: #333;
}

.btn-no:hover {
  background: #ff69b4;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 20, 147, 0.8);
  color: white;
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.btn-close:hover {
  background: #ff1493;
  transform: rotate(90deg);
}

#mediaContainer {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  position: relative;
  animation: slideIn 0.3s ease;
  min-height: 100px;
  display: none;
}

#mediaContainer.show {
  display: block;
}

#mediaContent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#mediaContent img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 500px;
}

#mediaContent video {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 500px;
}

.default-image {
  animation: fadeIn 0.5s ease;
}

.default-image img {
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.default-image img:hover {
  transform: scale(1.05);
}

.default-image.hidden {
  display: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .content, #mediaContainer {
    padding: 20px;
    max-width: 90vw;
  }

  h1 {
    font-size: 28px;
  }

  .buttons-container {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
