*{
    margin: 0;
    overflow-x: hidden;
}

#home {
    filter: blur(0px);
}
.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/
    overflow: hidden;
}

.tiger-img-container {
    position: relative; 
    width: 350px;
    height: 500px;
    background-color: #1d1b25;
    border: 1px #00FF00 solid;
    overflow: hidden;
}

.tiger-img-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #00FF00;
    border-radius: 0px;
    filter: blur(5px); 
}

.hack-container {
    position: absolute;
    top: 25%; 
    left: 5%;
    width: 90%;
}

span {
    margin-left: 10px;
    margin-top: 2px;
}

.hack-block {
    border: 1px solid #a5262a;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    color: #a5262a;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-items: center;
    width: 80%;
    margin: 20px;
}

.hack-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #a5262a;
    border-style: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
    color: #FFF;
    border: 2px #00FF00 solid;
    width: 85.5%;
    padding: 10px;
    border-radius: 10px;
  }

#casino-button {
    /*position: absolute;*/
    bottom: 20px;
    left: 50%;
    /*transform: translateX(-50%);*/
    padding: 10px 20px;
    background-color: #00FF00;
    border-style: none;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
    color: #FFF;
    width: 100%;
    padding: 10px;
    border: 1px #00FF00 solid;
    border-radius: 10px;
}

#casino-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0px;
    filter: blur(5px); 
}

.preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.found-signal {
    padding: 5px;
    width: 92%;
    text-align: center;
    background-color: #1d1b25;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: bold;
    border-radius: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px #00FF00 solid;
    border-radius: 10px;
}

.game-button {
    background-color: transparent;
    border: 0px #00FF00 solid;
}

h1 {
    text-align: center;
    font-size: 48px;
    color: #ffffff;
    background-color: #141118; 
    padding: 10px;
    border-radius: 10px;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    border: 1px #00FF00 solid;
    border-radius: 10px;
    width: 70%;
    margin: auto;
    
}


h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #00FF00; 
    border-radius: 0px;
    filter: blur(5px); 
}

h2 {
    text-align: center;
    font-size: 25px;
    color: #ffffff;
    background-color: #141118; 
    padding: 10px;
    border-radius: 10px;
    position: relative;
    font-family: 'Courier New', Courier, monospace; 
    font-weight: bold;
    border: 1px #00FF00 solid;
    border-radius: 10px;
    width: 40%;
    margin: auto;
    
}

h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #00FF00; 
    border-radius: 0px;
    filter: blur(5px);
}

#ninjacrash-panel {
    background-image: linear-gradient(rgba(245, 59, 105, 1), rgba(245, 59, 105, 1), rgb(248, 149, 119));
    border-radius: 20px;
}

canvas {
    position:absolute;
    left:0;
    top:0;
    z-index:-1;
    display: block;
}

audio::-webkit-media-controls-panel {
    background-color: #141118;
}

audio::-webkit-media-controls-mute-button {
    background-color: #00FF00;
    border-radius: 50%;
}

audio::-webkit-media-controls-play-button {
    background-color: #00FF00;
    border-radius: 50%;
}
  
audio::-webkit-media-controls-play-button:hover {
    background-color: #00c400;
}
  
audio::-webkit-media-controls-current-time-display {
    color: #00FF00;
}

audio::-webkit-media-controls-time-remaining-display {
    color: #00FF00;
}

audio::-webkit-media-controls-timeline {
    background-color: #00FF00;
    border-radius: 25px;
    margin-left: 10px;
    margin-right: 10px;
  }

audio::-webkit-media-controls-volume-slider {
    background-color: #00FF00;
    border-radius: 25px;
    padding-left: 8px;
    padding-right: 8px;
}