@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
  color: white;
}

.landing {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.landing-bg {
    animation: zoomInOut 10s ease-in-out infinite;
    background: url('standingboy.png') no-repeat center center;
    background-size: cover;
    width: 60%;
    height: 100%;
    position: absolute;
    z-index: -2;
  }

.landing-bg-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-color: black;
    opacity: 0.2;
}

@keyframes zoomInOut {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .landing h1 {
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    text-shadow:
      0 0 5px #00ffc3,
      0 0 10px #00c3a0,
      0 0 20px #00ffc3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: subtleFlicker 3s infinite alternate;
  }
  
  @keyframes subtleFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      opacity: 1;
      filter: none;
    }
    20%, 22%, 24%, 55% {
      opacity: 0.9;
      filter: blur(0.5px);
    }
  }

.landing button {
    padding: 15px 30px;
    background: linear-gradient(145deg, #16ff85, #1bcf60);
    border: none;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 12px;
    box-shadow:
      0 0 5px #00ff9c,
      0 0 10px #00ff9c,
      inset 0 0 5px #ffffff33;
    text-shadow: 0 0 5px #ffffffaa;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  .landing button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #ffffff66 0%, transparent 70%);
    animation: shimmer 2.5s infinite linear;
    pointer-events: none;
  }
  
  @keyframes shimmer {
    0% { transform: rotate(0deg) translate(0, 0); }
    100% { transform: rotate(360deg) translate(0, 0); }
  }
  
  .landing button:hover {
    transform: scale(1.05);
  }

.main-site {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

video.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-strip {
    position: absolute;
    width: 100%;
    height: 40px;
    background: white;
    overflow: hidden;
    color: green;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
  }
  
  .scroll-strip.top {
    top: 0;
  }
  
  .scroll-strip.bottom {
    bottom: 0;
  }
  
  .scroll-container {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: 100%;
    gap: 10%;
  }
  
  .scroll-container.reverse {
    animation: scroll-right 20s linear infinite;
  }
  
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: gold;
  text-shadow: 0 0 15px green;
}

.button-wrapper {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    max-width: 350px;
    width: 94%;
  }

  .button-wrapper a {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* Top main button */
  .buy-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(145deg, #16ff85, #1bcf60);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 12px;
    box-shadow:
      0 0 5px #00ff9c,
      0 0 10px #00ff9c,
      inset 0 0 5px #ffffff33;
    text-shadow: 0 0 5px #ffffffaa;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
  }

  .logo-container img {
    width: 94%;
    max-width: 600px;
  }

  .logo-container img:hover {
    transform: scale(1.03);
    transition: transform 0.2s ease;
  }
  
  
  .buy-button:hover {
    transform: scale(1.05);
  }
  
  .icon-buttons {
    display: flex;
    width: 100%;
    max-width: 400px;
    justify-content: space-between;
  }
  
  .icon-buttons button {
    background: linear-gradient(145deg, #16ff85, #1bcf60);
    border: none;
    padding: 12px;
    border-radius: 12px;
    box-shadow:
      0 0 5px #00ff9c,
      0 0 10px #00ff9c,
      inset 0 0 5px #ffffff33;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 30%;
  }
  
  .icon-buttons button:hover {
    transform: scale(1.1);
  }
  
.icon-buttons a {
 text-decoration: none;
 color: #000000;
}

  .icon-buttons img {
    width: 24px;
    height: 24px;
    display: block;
  }

.volume-toggle {
  position: absolute;
  bottom: 5%;
  right: 2%;
  cursor: pointer;
  font-size: 1.5rem;
  background: white;
  color: green;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px green;
}