/* =========================================
   Suspended Site Notice - Static Page
   Clean, Professional, Minimal Design
   ========================================= */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

/* Card */
.card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.06);
    width: 100%;
}

/* Warning Icon */
.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.warning-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, #fef3cd, #fff3cd);
    border: 3px solid #f0ad4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.exclamation {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d68910;
    line-height: 1;
    user-select: none;
}

/* Typography */
.headline {
    font-size: 1.625rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.description {
    font-size: 1rem;
    color: #6e6e73;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Divider */
.divider {
    border: none;
    height: 1px;
    background-color: #e8e8ed;
    margin: 1.5rem 0;
}

/* Support Text */
.support {
    font-size: 0.9375rem;
    color: #86868b;
}

/* Footer */
.footer {
    padding: 1.5rem 0 0.5rem;
    text-align: center;
}

.footer p {
    font-size: 0.8125rem;
    color: #a1a1a6;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .headline {
        font-size: 1.375rem;
    }
    
    .warning-icon {
        width: 60px;
        height: 60px;
    }
    
    .exclamation {
        font-size: 2rem;
    }
}

/* Accessibility - Focus States */
:focus-visible {
    outline: 2px solid #0071e3;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid #1d1d1f;
    }
    
    .warning-icon {
        border-width: 4px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
