/**
 * Arik Admin Screen Customizer - Styles
 *
 * @version 2.0.0
 */

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    height: 100%;
}

body.arikasc-maintenance {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #444;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

body.arikasc-maintenance.has-gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease infinite;
}

.arikasc-maintenance-container {
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fade-in-up 0.8s ease-out;
    box-sizing: border-box;
}

.arikasc-maintenance-logo {
    margin-bottom: 30px;
}

.arikasc-maintenance-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 999px !important;
}

.arikasc-maintenance-container h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0 0 0.5em 0;
    color: #2c3e50;
    line-height: 1.2;
}

.arikasc-maintenance-content {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.arikasc-maintenance-content p:last-child {
    margin-bottom: 0;
}

.arikasc-maintenance-socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.arikasc-maintenance-socials a {
    color: #7f8c8d;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecf0f1;
}

.arikasc-maintenance-socials a:hover {
    color: #fff;
    background: #3498db;
    transform: translateY(-3px);
}

.arikasc-maintenance-footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9em;
    color: #333;
    width: 100%;
    text-align: center;
}

.arikasc-maintenance-footer.light-text {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 600px) {
    .arikasc-maintenance-container {
        padding: 30px 25px;
    }

    .arikasc-maintenance-container h1 {
        font-size: 2.2em;
    }

    .arikasc-maintenance-content {
        font-size: 1em;
    }
}
