* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    font-family: Arial, sans-serif;
  }

  .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 300px);
    text-align: center;
    position: relative;
    flex-wrap: wrap;
    padding: 20px;
  }

  .column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    margin: 10px;
  }

  .image-button {
    background: none;
    border: none;
    cursor: pointer;
  }

  .image-button img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .image-button img:hover {
    transform: scale(1.1);
  }

  h3 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, #ff4500, #ffcc00);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 0.3s ease;
    text-shadow: 0 0 5px #ff6a00, 0 0 10px #ff0000;
  }
  h2 {
    font-size: 22px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, #ff4500, #ffcc00);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 0.3s ease;
    text-shadow: 0 0 5px #ff6a00, 0 0 10px #ff0000;
  }

  .rebirth-button {
    font-size: 100px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to bottom, #ff4500, #ffcc00);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-shadow: 0 0 5px #ff6a00, 0 0 10px #ff0000;
  }

  @keyframes flameFlicker {
    0% {
      text-shadow: 0 0 5px #ff6a00, 0 0 15px #ff0000;
    }
    50% {
      text-shadow: 0 0 10px #ffaa00, 0 0 20px #ff4500, 0 0 30px #ff0000;
    }
    100% {
      text-shadow: 0 0 5px #ff6a00, 0 0 15px #ff0000;
    }
  }

  .rebirth-button:hover {
    transform: scale(1.1);
    animation: flameFlicker 0.6s infinite alternate;
  }

  .footer-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    z-index: 10;

  }

  .footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-logos img {
    max-height: 70px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
  }
  

  .footer-logos img:hover {
    transform: scale(1.1);
  }

  .site-header {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background: transparent;
    z-index: 10;
    position: relative;
  }

  .site-header img {
    max-height: 150px;
    width: auto;
  }

  .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      height: auto;
      padding-bottom: 100px;
    }

    .rebirth-button {
      font-size: 60px;
    }

    h3 {
      font-size: 26px;
    }

    .footer-bar {
        padding: 10px 5px;
      }
    
      .footer-logos {
        gap: 20px;
        justify-content: center;
      }
    
      .footer-logos img {
        max-height: 45px;
      }
    .site-header img {
      max-height: 100px;
    }
  }