body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7fafc; /* Light gray background */
    color: #1a2a36; /* Dark text color */
    min-height: 100vh;
    /* overflow-x: hidden; */ /* Removed as it might not be in original */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
    overflow: hidden;
}

.illustration-section {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

#svg-illustration {
    width: 580px;
    max-width: 95vw;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
    position: relative;
}

#svg-illustration.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem; /* Original size */
    font-weight: 700; /* Original weight */
    /* letter-spacing: 2px; */ /* May not be original */
    color: #2d3748; /* Original color, assuming a darker neutral */
    margin-bottom: 20px; /* Original margin */
}

.description {
    font-size: 1.08rem;
    color: #3a4a5a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.report-btn {
    background-color: #e53935; /* Original red color */
    color: #fff;
    border: none;
    border-radius: 6px; /* Original border-radius */
    padding: 15px 30px; /* Original padding */
    font-size: 1.1rem; /* Original font size */
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Original gap */
}

.report-btn:hover {
    background-color: #c62828; /* Darker red on hover */
    transform: translateY(-1px);
}

.report-btn .icon {
    font-size: 1.3em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed maintenance-specific animations: pulse, blink, spin */

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    .container {
        padding: 0 10px;
    }
    #svg-illustration {
        width: 98vw;
        height: 140px;
    }
}