@font-face {
    font-family: 'System Font';
    src: local('-apple-system'), local('BlinkMacSystemFont'), local('Segoe UI'), local('Roboto'), local('Arial');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #b68a35 0%, #d4a649 100%);
    padding: 10px 0;
    font-size: 14px;
    color: white;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.vision-logo img {
    height: 70px;
}

/* Alert Banner */
.alert-banner {
    background: hwb(50 2% 43%);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.alert-banner .blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Service Alert Card */
.service-alert {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #dc3545;
}

.service-alert h1 {
    color: #dc3545;
    margin-bottom: 20px;
    font-size: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
}

.service-alert p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.alert-box h3 {
    color: #856404;
    margin-bottom: 15px;
}

.email-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.email-section h3 {
    color: #b68a35;
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    background: #b68a35;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #9a7229;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid #b68a35;
}

.info-card h3 {
    color: #b68a35;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
}

/* Requirements List */
.requirements {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.requirements h3 {
    color: #333;
    margin-bottom: 20px;
}

.requirements ul {
    list-style-position: inside;
    color: #666;
}

.requirements li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.requirements li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .logo img, .vision-logo img {
        height: 60px;
    }

    .service-alert {
        padding: 20px;
    }

    .service-alert h1 {
        font-size: 24px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

/* Status Badge */
.status-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.scroll-notice {
    background: #fff3cd;
    padding: 10px;
    overflow: hidden;
    position: relative;
    height: 10vh;
}

.scroll-text {
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    color: #856404;
    font-weight: 600;
    white-space: nowrap; 
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

html {
    isolation: isolate;
}