body {
    height: 100%;
    font-family: 'Press Start 2P', cursive;
    cursor: default;
    background-color: #1C1C1C;
    background-size: cover;
    overflow: hidden;
}
.back-link {
    position: fixed;
    top: 60px;
    left: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    color: #f5f5f5;
    z-index: 10000; 
    transition: color 0.3s;
}

.back-link:hover {
    color: #ff4081;
    background-color: rgba(0, 0, 0, 0.9);
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}