/* Same base as avant */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
  }
  
  .video-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
  }
  
  /* Video preview wrapper */
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-bottom: 2rem;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  }
  
  /* Thumbnail image */
  .video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Play button overlay */
  .video-wrapper::after {
    content: "▶";
    position: absolute;
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  /* Title */
  .video-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  /* Description */
  .video-page p {
    max-width: 720px;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
    padding: 0 1rem;
  }
  
  /* Back button */
  .video-page a.back-btn {
    display: inline-block;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .video-page a.back-btn:hover {
    background: #c00510;
  }
  
  /* Mobile tweaks */
  @media (max-width: 768px) {
    .video-page h1 { font-size: 1.6rem; }
    .video-page p { font-size: 1rem; }
  }
  @media (max-width: 480px) {
    .video-page h1 { font-size: 1.4rem; }
    .video-page p { font-size: 0.9rem; line-height: 1.4; }
  }