@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Base */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #5f4334;
}

/* Header */
.header {
  background: linear-gradient(90deg, #e94e77, #f76d57);
  padding: 10px 20px;
}
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 60px;
}

/* Button */
.btn {
  background: #e8f4ff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #d4e9ff;
}

/* Game / Video area */
.game-video-section {
  max-width: 1440px;
  margin: 25px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 90%;
}
.video-box {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 300% 300%;
  animation: pluto-gradient 60s ease infinite;
}
@keyframes pluto-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 4px;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-button .btn {
  width: 100%;
  font-size: 30px;
  margin-top: 15px;
}

/* If the iframe replaces the poster */
iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Content */
section.content-container {
  background: #fff;
  max-width: 1388px;
  margin: 23px auto;
  border-radius: 10px;
  padding: 29px;
  width: 85%;
}
section.content-container h2,
section.content-container h3 {
  color: #ff0000;
  font-weight: 600;
  text-transform: uppercase;
}
.content-container p,
.content-container li {
  line-height: 30px;
  color: #5f4334;
}
.content-container p a {
  color: #ff0000;
  text-decoration: underline;
}
.content-container ul {
  padding-left: 20px;
}

/* Footer */
footer {
  background: linear-gradient(114deg, #e73c7e 0, #ee6152 86%);
  padding-top: 17px;
  padding-bottom: 17px;
  margin-top: 40px;
}
