/* Body & Background */
#intro_top {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    background: #0a1f44;
    /* dark blue */
    background-image:
        radial-gradient(circle 25px at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle 25px at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        url('images/fox_face_imprint.svg');
    /* fox face imprint */
    background-repeat: repeat, repeat, no-repeat;
    background-size: 150px 150px, 150px 150px, 400px 400px;
    background-position: 0 0, 50% 50%, center center;
}

/* Login Container */
#login_wrap {
    width: 100%;
    height: 100%;
}

#login_all {
    width: 800px;
    max-width: 94%;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    color: #ccc;
}

/* Logo */
#login_logo {
    height: 70px;
}

/* Language button */
#intro_lang {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
}

/* Section */
.section {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.section_content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section_inside {
    margin: 0 auto;
}

/* Buttons */
.intro_login_btn,
.intro_guest_btn {
    cursor: pointer;
    transition: transform 0.3s;
}

.intro_guest_btn.paw-bounce {
    animation: bouncePaw 1.5s infinite;
}

@keyframes bouncePaw {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Rooms Showcase */
#room_showcase {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin: 20px 0;
}

#container_rooms {
    display: flex;
    width: calc(200 * 150px * 2);
    /* 200 rooms */
    animation: slideLeft 120s linear infinite;
    /* slower animation */
}

#container_rooms li {
    list-style: none;
    flex: 0 0 auto;
    padding: 10px 25px;
    margin-right: 10px;
    background: linear-gradient(135deg, #FF6F91, #FFB347);
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Slow horizontal slide animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
#room_showcase:hover #container_rooms {
    animation-play-state: paused;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #login_all {
        width: 95%;
    }

    #container_rooms {
        width: calc(200 * 120px * 2);
    }

    #container_rooms li {
        padding: 8px 15px;
        margin-right: 8px;
    }
}