.mobileshow {
    display: none;
}

.hide {
    display: inline;
}

.smlogo {
    width: 250px;
}

@media screen and (max-width: 500px) {
    .mobileshow {
        display: block;
    }

    .hide {
        display: none;
    }

    .mobilehide {
        display: none;
    }

    .smlogo {
        width: 150px;
    }
}

@media only screen and (max-width: 479px) {
    .mobile-hide {
        display: none !important;
    }
}

main .meta.sound a {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icon-sound-light.png) no-repeat;
    background-size: 32px 15px;
    background-position: top left;
    transition: opacity .3s ease-in-out, background-position 0s;
}

.access-button {
    position: fixed;
    bottom: 175px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: purple;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    display: none;
    z-index: 1000;
}

.access-button:hover {
    background-color: #f00;
    color: #fff;
}

.tooltip {
    display: none;
    position: absolute;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    pointer-events: none;
    z-index: 2000;
}

.password-container {
    position: fixed;
    bottom: 175px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.password-container input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 70%;
}

.password-container button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: purple;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    width: 25%;
}

.password-container button:hover {
    background-color: #f00;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    color: #fff;
    text-align: center;
    padding-top: 10%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.lightbox input {
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    max-width: 80%;
}

.lightbox button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: purple;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.lightbox button:hover {
    background-color: #f00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s;
}
