:root {
    --hunter-blue: #004f9f;
    --hunter-yellow: #fecd20;
    --hunter-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--hunter-blue) 0%, #002855 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.construction-card {
    background-color: var(--hunter-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--hunter-yellow);
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-spin {
    color: var(--hunter-yellow);
    font-size: 2.5rem;
    margin: 1rem 0;
    animation: spin 8s infinite linear;
    display: block;
}

h1 {
    color: var(--hunter-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.divider {
    height: 4px;
    width: 40px;
    background-color: var(--hunter-yellow);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
        align-items: center;
    }

    .construction-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .logo-placeholder {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}