  /* CSS Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Custom Font */
  @font-face {
    font-family: 'origin';
    src: url('fonts/OriginTech\ personal\ use.ttf') format('truetype');
  }
  /* Custom Font */
  @font-face {
    font-family: 'roboto';
    src: url('fonts/roboto.ttf') format('truetype');
  }
  /* Body Styles */
  body {
    font-family: 'roboto', sans-serif;
    background-image: url('images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  /* Header Styles */
  .header {
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    color: #fff;
    padding: 20px;
    text-align: center;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    word-break: normal;
    overflow-wrap: normal;
  }

  .header h1 {
    font-family: 'origin', sans-serif;
    font-size: 2em;
    margin: 0;
  }

  /* Container Styles */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-top: 80px;
    width: 90%;
  }

  /* Content Styles */
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }

  .content h2 {
    margin-top: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .content a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    background-color: #fdba2f;
    border-radius: 4px;
    margin-bottom: 10px;
    width: calc(100% - 20px);
    text-align: center;
    font-size: 1.3em;
    margin-left: 10px;
    margin-right: 10px;
  }

  .content a:hover {
    text-decoration: underline;
  }

  /* Video Container Styles */
  #video-container {
    width: 100%;
    max-width: 50%;
    margin-bottom: 20px;
  }

  /* Video Styles */
  #video-container video {
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  /* Buy Me Coffee Button Styles */
  .buy-me-coffee,
  .copy-text, 
  .back-to-main-menu {
    position: fixed;
    background-color: transparent;
    color: #fff;
    padding: 7px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
  }

  .buy-me-coffee:hover,
  .copy-text:hover, 
  .back-to-main-menu:hover {
    background-color: #e0a82d;
    text-decoration: underline;
  }

  .buy-me-coffee {
    bottom: 40px;
    right: 20px;
  }

  .copy-text {
    bottom: 20px;
    right: 20px;
  }

  .back-to-main-menu {
    bottom: 40px;
    left: 20px;
}


  /* Responsive Design */
  @media (max-width: 768px) {
    .content {
      width: 80%;
    }

    .header h1 {
      font-size: 1.8em;
    }

    .content h2 {
      font-size: 1.3em;
    }

    .content a {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  }

  /* Additional Media Queries for Specific Resolutions */
  @media (max-width: 412px) and (max-height: 914px),
  (max-width: 414px) and (max-height: 896px),
  (max-width: 412px) and (max-height: 915px) {
    .header h1 {
      font-size: 1.5em;
    }

    .content h2 {
      font-size: 1.2em;
    }

    .content {
      width: 90%;
    }
  }

  @media (max-width: 360px) and (max-height: 740px) {
    .header h1 {
      font-size: 1.4em;
    }

    .content h2 {
      font-size: 1.1em;
    }

    .content {
      width: 95%;
    }
  }

  @media (max-width: 430px) and (max-height: 932px) {
    .header h1 {
      font-size: 1.6em;
    }

    .content h2 {
      font-size: 1.3em;
    }

    .content {
      width: 85%;
    }
  }

  @media (max-width: 390px) and (max-height: 844px) {
    .header h1 {
      font-size: 1.5em;
    }

    .content h2 {
      font-size: 1.2em;
    }

    .content {
      width: 90%;
    }
  }

  @media (max-width: 375px) and (max-height: 667px) {
    .header h1 {
      font-size: 1.4em;
    }

    .content h2 {
      font-size: 1.1em;
    }

    .content {
      width: 95%;
    }
  }