@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    color-scheme: light only;
}

html, body {
    background-color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    cursor: pointer;
    outline: none;
    background-color: #FFFFFF !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    margin-top: -100px;
    width: 60%;
    max-width: 450px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #01bbda;
    border-radius: 50%;
    margin: 0 6px;
    animation: subtlePulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.clickable {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

button {
    font-family: 'Poppins', sans-serif;
    background-color: #01BBDA;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0198b3;
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(1, 187, 218, 0.5);
}

a {
    color: #01BBDA;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0198b3;
}

@media (pointer: coarse) {
    body {
        overflow-y: auto;
        position: relative;
    }
}

@media (orientation: landscape) {
    body {
        position: relative;
        overflow-y: auto;
        height: auto;
    }
}

@keyframes subtlePulse {
    0% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-8px); box-shadow: 0 0 8px rgba(1, 187, 218, 0.5); }
    100% { opacity: 0.5; transform: translateY(0); }
}