/* Naibabiji Coming Soon - 极简现代设计 */

/* 重置和基础样式 */
.naibabijicsmm-coming-soon-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.naibabijicsmm-coming-soon-page *,
.naibabijicsmm-coming-soon-page *::before,
.naibabijicsmm-coming-soon-page *::after {
    box-sizing: inherit;
}

/* 主体样式 - 极简白色背景 */
body.naibabijicsmm-coming-soon-page {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    font-weight: 400;
}

/* 主容器 - 极简现代设计 */
.coming-soon-container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* LOGO样式 - 极简设计 */
.coming-soon-logo {
    margin-bottom: 40px;
}

.coming-soon-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

/* 标题 - 简洁现代 */
.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* 内容文本 - 清晰易读 */
.coming-soon-content {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-content p {
    margin-bottom: 16px;
}

.coming-soon-content p:last-child {
    margin-bottom: 0;
}

/* 密码表单 - 极简设计 */
.password-form {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.password-form h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #2d3748;
    letter-spacing: 0;
}

/* 输入框组合 - 简洁风格 */
.password-input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.password-input-group:focus-within {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* 输入框样式 */
.password-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
    color: #2d3748;
    font-family: inherit;
}

.password-input::placeholder {
    color: #a0aec0;
}

/* 提交按钮 - 简洁现代 */
.password-submit {
    padding: 16px 24px;
    background: #4299e1;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    min-width: 100px;
}

.password-submit:hover:not(:disabled) {
    background: #3182ce;
}

.password-submit:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

/* 错误消息 - 简洁设计 */
.password-error {
    display: none;
    background: #fed7d7;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
    cursor: pointer;
    position: relative;
}

.password-error:hover {
    background: #fecaca;
}

.password-error::after {
    content: '×';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.password-error:hover::after {
    opacity: 1;
}

/* 加载动画 - 简洁风格 */
.loading-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #4299e1;
    animation: spin 1s linear infinite;
}

/* 基础动画 */
@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    body.naibabijicsmm-coming-soon-page {
        padding: 15px;
    }
    
    .coming-soon-container {
        padding: 60px 30px;
        max-width: 100%;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .coming-soon-content {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .password-input-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .password-input {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .password-submit {
        border-radius: 0 0 7px 7px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 40px 20px;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .coming-soon-content {
        font-size: 0.95rem;
    }
    
    .password-form h3 {
        font-size: 1.125rem;
    }
}

/* 深色模式支持 - 简洁版 */
@media (prefers-color-scheme: dark) {
    body.naibabijicsmm-coming-soon-page {
        background: #1a202c;
        color: #e2e8f0;
    }
    
    .coming-soon-container {
        background: #2d3748;
    }
    
    .coming-soon-title {
        color: #f7fafc;
    }
    
    .coming-soon-content {
        color: #cbd5e0;
    }
    
    .password-form {
        border-top-color: #4a5568;
    }
    
    .password-form h3 {
        color: #f7fafc;
    }
    
    .password-input-group {
        border-color: #4a5568;
        background: #2d3748;
    }
    
    .password-input {
        color: #f7fafc;
    }
    
    .password-input::placeholder {
        color: #a0aec0;
    }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
    .coming-soon-container {
        border: 2px solid #000;
    }
    
    .password-input-group {
        border-color: #000;
    }
    
    .password-submit {
        background: #000;
    }
}

/* 减少动画模式 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 打印样式 */
@media print {
    body.naibabijicsmm-coming-soon-page {
        background: white !important;
        color: black !important;
    }
    
    .coming-soon-container {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        border: 1px solid black;
    }
    
    .coming-soon-title {
        color: black !important;
    }
    
    .password-form {
        display: none !important;
    }
}