/* ===================================
   VYB Inactive Notice Styles
   Primary Color: #573f79
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Card */
.card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(87, 63, 121, 0.1);
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Container */
.logo-container {
    background: linear-gradient(135deg, #573f79 0%, #6b4f8a 100%);
    padding: 2.5rem 2rem;
    text-align: center;
}

.logo {
    max-width: 220px;
    height: auto;
    display: inline-block;
    filter: brightness(0) invert(1);
}

/* Content Area */
.content {
    padding: 2.5rem 2rem;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #573f79;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.message {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.7;
}

/* Support Card */
.support-card {
    background: #f8f9fb;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    padding: 1.75rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: #573f79;
    box-shadow: 0 4px 12px rgba(87, 63, 121, 0.15);
    transform: translateY(-2px);
}

.support-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #573f79 0%, #6b4f8a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.support-content {
    flex: 1;
}

.support-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.support-email {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #573f79;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.support-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #573f79;
    transition: width 0.3s ease;
}

.support-email:hover {
    color: #6b4f8a;
}

.support-email:hover::after {
    width: 100%;
}

.support-description {
    font-size: 0.875rem;
    color: #7e8c9a;
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    background: #f8f9fb;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e8ecf1;
}

.footer p {
    font-size: 0.875rem;
    color: #7e8c9a;
}

/* Responsive Design */
@media (max-width: 640px) {
    .title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    .logo-container {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .support-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.375rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .message {
        font-size: 0.9375rem;
    }
    
    .support-email {
        font-size: 1rem;
    }
}
