/* Base page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 24px;
}

main {
    padding: 20px;
}

.skyss0fly {
    background: white;
    padding: 15px;
    margin: 10px auto;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Default Aquaris Button (mobile style) */
.aquaris-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
    font-size: 16px;
    white-space: nowrap;
}

/* Desktop override (769px and up) */
@media screen and (min-width: 769px) {
    .aquaris-button {
        top: 50%;
        bottom: auto;
        left: auto;
        right: -40px;
        transform: rotate(-90deg) translateY(-50%);
        transform-origin: right center;
        border-radius: 8px 8px 0 0;
        padding: 10px 20px;
        font-size: 14px;
    }

    .aquaris-button:hover {
        right: 0;
    }
}
