/* Reset and body styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  h1 {
    font-size: 3.5em;
    font-weight: bold;
    color: yellow;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .video-container {
    width: 700px;
    border: 3px solid #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .unmute-instruction {
    margin-top: 15px;
    font-size: 1.1em;
    color: #555;
    text-align: center;
  }
  
  .visit-counter {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #444;
    text-align: center;
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5em;
    }
  
    .video-container {
      width: 90vw;
      height: auto;
    }
  
    video {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2em;
    }
  
    .video-container {
      width: 95vw;
      height: auto;
    }
  
    video {
      width: 100%;
      height: auto;
    }
  
    .unmute-instruction,
    .visit-counter {
      font-size: 1em;
    }
  }