/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.content-wrapper {
    max-width: 28rem;
    width: 100%;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    margin: 0 auto 1.5rem;
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    margin-top: 1.5rem;
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.05em;
}

.brand-tagline {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

/* Maintenance Card */
.maintenance-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Card Header */
.card-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.maintenance-icon {
    width: 4rem;
    height: 4rem;
    color: #f59e0b;
    /* No animation - static for long-term takedown */
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.info-box {
    background-color: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 0.375rem;
    padding: 1.25rem;
    margin-bottom: 0;
}

.info-text {
    font-size: 0.875rem;
    color: #713f12;
    margin-bottom: 0.875rem;
    line-height: 1.6;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-text strong {
    font-weight: 600;
}

/* Status Indicator - Removed for long-term takedown */

/* Card Footer */
.card-footer {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.footer-text-small {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
}

/* Page Footer */
.page-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 2rem 1rem;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .maintenance-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .card-header,
    .card-content,
    .card-footer {
        padding: 1.25rem;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 3rem 2rem;
    }
}
