* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
}

.suspended-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-wrapper {
    margin-bottom: 30px;
}

.icon-wrapper i {
    font-size: 80px;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.6;
}

.status-info {
    background: #f7fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.status-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-item i {
    font-size: 1.2rem;
    color: #667eea;
    width: 30px;
    margin-right: 15px;
}

.status-item strong {
    color: #2d3748;
    margin-right: 8px;
}

.affected-services {
    background: #fef5e7;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.affected-services h3 {
    color: #e67e22;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.affected-services ul {
    list-style: none;
}

.affected-services li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.affected-services li i {
    margin-right: 10px;
    color: #f39c12;
}

.progress-section {
    background: #e8f4fd;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.progress-section h3 {
    color: #2196f3;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    height: 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
}

.contact-info {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #0369a1;
    margin-bottom: 10px;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0369a1;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 105, 161, 0.3);
}

.updates-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.updates-section h3 {
    color: #475569;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.updates-list {
    max-height: 200px;
    overflow-y: auto;
}

.update-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
    animation: slideIn 0.3s ease-out;
}

.update-item:last-child {
    border-bottom: none;
}

.update-time {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.update-text {
    color: #334155;
    flex: 1;
    margin-left: 15px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #667eea;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .suspended-card {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .notification-toggle {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .suspended-card {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .icon-wrapper i {
        font-size: 60px;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .status-item i {
        margin-bottom: 5px;
    }
}
