body { margin: 0; overflow: hidden; }
canvas { display: block; }

#popup {
position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: rgba(0,0,0,0.85);
  color: white;
  display: none;
  max-width: 1000px;
  border-radius: 10px;
  text-align: center;
  z-index: 9997;
  font-family: sans-serif;
}

.notsure {
    position: fixed;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: rgb(0, 255, 34);
  transform: translate(-50%, -50%);
  z-index: 9996;
  border-radius: 50%;
}

#doorPrompt {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 20px;
background: rgba(0,0,0,0.7);
color: white;
font-family: sans-serif;
border-radius: 5px;
display: none;
z-index: 10;
}

#fadeOverlay {
position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 10000;
}

#startoverlay {
    background-color: #000000b9;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 9998;
    color: #fff;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

.overlayheader {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.health {
    position: absolute;
    color: #fff;
    bottom: 2%;
    left: 2%;
    font-size: 20px;
    z-index: 9999;
}

.logo {
    width: 100px;
    display: flex;
    height: 100px;
}

.logo img {
    height: 100%;
    width: 100%;
}

.openmenu {
    position: absolute;
    color: #fff;
    top: 1%;
    left: 2%;
    z-index: 9999;
}

.overlaycontainer {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0% 1%;
}

.column-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.column-container h1 {
    font-size: 40px;
    margin: 10px;
}

.column-container2 {
    display: flex;
    flex-direction: column;
    width: 25%;
    gap: 5px;
}

#right {
    align-items: flex-end;
}

#left {
    align-items: flex-start;
    justify-content: center;
}

.column-container2 p {
    margin: 0;
}

.social-button {
    height: 50px;
    width: 120px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

.social-button:hover {
    cursor:pointer;
    opacity: 0.9;
}

#telegram {
    background-color: #24A1DE;
}

#buy {
    background-color: #24de53;
    font-size: 20px;
}

#twitter {
    background-color: #000;
}

#start {
    height: 50px;
    width: 120px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    background-color: #f6fa09;
}

#start:hover {
    cursor:pointer;
    opacity: 0.9;
}

#ca {
    cursor: pointer;
    user-select: all;
    color: #3498db;
    text-align: left;
    width: 100%;
  }

.mobile {
    display: none;
}

  @media (max-width: 768px) {
    .mobile {
        display: flex;
        background-color: #000;
        height: 100%;
        width: 100%;
        position: absolute;
        justify-content: center;
    }
        .column-container2 {
            display: none;
        }
        .health { 
            display: none;
        }
        .openmenu {
            display: none;
        }

        #start {
            display: none;
        }

        .overlayheader {
            flex-wrap: wrap;
            flex-direction: row;
            position: absolute;
            bottom: 5%;
        }

        .social-button {
            width: 250px;
        }

        .column-container {
            width: 90%;
            position: absolute;
            top: 15%;
        }
        #mobiletext {
            position: absolute;
            color: #fff;
            z-index: 9999px;
            width: 90%;
        }
  }

  @media (max-width: 500px) {
    .column-container {
        top: 10%;
    }
  }