    body {
      font-family: Arial, sans-serif;
      background-color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      max-width: 1000px;
      width: 100%;
      margin: auto;
    }
    .poster-card {
      background-color: white;
      padding: 15px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 100%;
      position: relative;
    }
.poster-image {
  width: 100%;
  max-width: 1080px;
  max-height: 720px;
  height: 100%;
  border: none;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}

.poster-image img {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  object-fit: cover;
  margin: -5px;
}

    .details {
      text-align: center;
    }
    .details h2 {
      font-size: 30px;
      margin: 0;
    }
    .details p {
      font-size: 16px;
      margin: 5px 0;
    }
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: red;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 40px;
      color: white;
      transition: background-color 0.3s;
    }
    .play-button:hover {
      background-color: darkred;
    }
    .watch-button {
      background-color: red;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 17px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s;
    }
    .watch-button:hover {
      background-color: darkred;
    }
	.ad-container {
      display: block;
	  text-align: center;
      margin-top: 20px;
    }
	.modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
      background-color: #fff;
      margin: 15% auto;
      padding: 20px;
      border-radius: 10px;
      width: 80%;
	  max-width: 420px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	  text-align: center;
    }

    .modal p {
      font-size: 18px;
      margin: 10px 0;
    }

    .modal button {
      background-color: red;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 17px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s;
    }

    .modal button:hover {
      background-color: darkred;
    }