/* Page background */
body {
    background-color: #0b1320 !important;
}

#page_content {
    background-color: #0b1320 !important;
}

.main-content,
.container-fluid,
main {
    background-color: #0b1320 !important;
}

/* Under development container */
.under-development {
    background-color: #0b1320;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 2rem 0;
    margin-top: -80px; /* Move content up */
}

/* Content wrapper */
.content-wrapper {
    text-align: center;
    z-index: 2;
    transform: translateY(-50px); /* Move content further up */
}

/* Development image */
.dev-image {
    width: 400px; /* Increased from 200px */
    height: auto;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
    margin-bottom: 1.5rem; /* Reduced margin to bring text closer */
}

/* Floating animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px);
    }
}

/* Development message */
.dev-message {
    font-size: 2rem;
    font-weight: 600;
    color: #d7af6b;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0; /* Ensure no extra top margin */
}

/* Responsive design */
@media (max-width: 768px) {
    .dev-image {
        width: 220px; /* Increased from 150px */
    }
    
    .dev-message {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .under-development {
        margin-top: -60px; /* Less adjustment on tablets */
    }
    
    .content-wrapper {
        transform: translateY(-30px); /* Less movement on tablets */
    }
}

@media (max-width: 480px) {
    .dev-image {
        width: 180px; /* Increased from 120px */
    }
    
    .dev-message {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .under-development {
        margin-top: -40px; /* Even less on mobile */
    }
    
    .content-wrapper {
        transform: translateY(-20px); /* Minimal movement on mobile */
    }
}