* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f9;
    overflow: hidden;
}

/* Background Blur Effect */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&q=80&w=1986'); /* Generic Campus Background */
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.maintenance-container {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 6px solid #0056b3;
}

.college-name {
    color: #0056b3;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.icon-wrapper {
    color: #0056b3;
    margin-bottom: 30px;
}

.icon-wrapper i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.cta-message h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.cta-message p {
    color: #777;
    font-size: 0.9rem;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #999;
}

/* Smooth Rotation for the Gear */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fa-spin-slow {
    animation: spin 8s linear infinite;
}