/* AutoGLM - Blue Theme Stylesheet */

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

:root {
    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-800: #1E40AF;
    --blue-900: #1E3A8A;
    --blue-950: #172554;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 30%, var(--blue-800) 60%, var(--blue-950) 100%);
    min-height: 100vh;
    color: #E2E8F0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.logo-icon {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.logo-text {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Main */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

/* Notice Banner */
.notice-banner {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    width: 100%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
}

.notice-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.notice-icon svg {
    filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

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

.notice-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FCA5A5;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.notice-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FECACA;
    letter-spacing: 2px;
}

/* Content Card */
.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.declaration {
    text-align: center;
    margin-bottom: 36px;
}

.declaration-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #CBD5E1;
}

.declaration-text strong {
    color: #FFFFFF;
}

.declaration-text.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #93C5FD;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--blue-500);
    border-radius: 8px;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.contact-description {
    color: #94A3B8;
    margin-bottom: 20px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue-400);
    text-decoration: none;
    padding: 14px 28px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--blue-500);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--blue-400);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Legal Notice */
.legal-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #64748B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-domain {
    margin-top: 4px;
    color: var(--blue-400);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
    .logo-text {
        font-size: 1.8rem;
    }

    .notice-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .notice-subtitle {
        font-size: 1rem;
    }

    .content-card {
        padding: 24px 20px;
    }

    .declaration-text {
        font-size: 1rem;
    }

    .declaration-text.highlight {
        font-size: 1.05rem;
    }

    .email-link {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}
