/* General Styles */
body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0e3b1e;
    flex-direction: column;
}

#page-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 10px;
    /* background-image: url('https://media.tenor.com/jOjF9a-DUToAAAAC/rain-drizzle.gif'); */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.inner {
    text-align: center;
    padding: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.actions.special {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.actions.special .login-box {
    display: inline-block;
}

.login-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.login-box a:hover {
    background-color: #cf6c0e;
    transform: scale(1.05);
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.logos-container a {
    display: block;
    width: calc(33.333% - 10px);
    box-sizing: border-box;
    transition: transform 0.3s;
}

.logos-container a:hover {
    transform: scale(1.1);
    /* Efek animasi saat di-hover */
}

.logos-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #fff;
    /* Border hitam untuk semua gambar */
    box-shadow: 0 2px 5px rgba(208, 208, 208, 0.15);
}

.visitor-counter {
    text-align: left;
    margin: 20px 0;
    font-size: 0.7em;
    color: #f4f4f4;
}

footer {
    /* background-color: #007bff; */
    color: white;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    font-size: 1em;
}

footer .container {
    text-align: center;
}

@media (max-width: 400px) {
    .logos-container a {
        width: calc(33.333% - 5px);
    }
}

.arrow-down {
    margin: 10px auto 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #e67e22;
    animation: bounce 1.2s infinite;
}

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

    50% {
        transform: translateY(6px);
    }
}
