/* 免责声明页面样式 */
.disclaimer-page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-radius: 15px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.disclaimer-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #6c5ce7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #6c5ce7;
}

.section-content {
    line-height: 1.8;
    color: #555;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #856404;
}

.important-notice i {
    font-size: 32px;
    color: #f39c12;
}

.important-notice p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* 信息真实性网格 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
    padding: 30px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
}

.info-icon {
    font-size: 48px;
    color: #6c5ce7;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 免责条款列表 */
.disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6c5ce7;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.disclaimer-icon {
    font-size: 24px;
    color: #6c5ce7;
    margin-top: 5px;
}

.disclaimer-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.disclaimer-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 高亮区域 */
.highlight-section {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.highlight-section .section-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.highlight-section .section-title i {
    color: white;
}

.contact-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.telegram-contact-info {
    text-align: center;
    margin: 30px 0;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-card i {
    font-size: 48px;
    color: #0088cc;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-btn {
    background: #0088cc;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #005580;
    color: white;
    transform: translateY(-2px);
}

/* 安全提示 */
.safety-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6c5ce7;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.tip-icon {
    font-size: 24px;
    color: #6c5ce7;
    margin-top: 5px;
}

.tip-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tip-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 法律声明 */
.legal-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.legal-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.legal-list li:before {
    content: "•";
    color: #6c5ce7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

/* 联系方式 */
.contact-methods {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    border: 2px solid #6c5ce7;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
}

.contact-method i {
    font-size: 36px;
    color: #0088cc;
}

.contact-method strong {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-method p {
    color: #666;
    margin: 0 0 15px 0;
}

.method-btn {
    background: #0088cc;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-btn:hover {
    background: #005580;
    color: white;
    transform: translateY(-2px);
}

/* 侧边栏样式 */
.important-reminder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.reminder-item i {
    color: #f39c12;
    width: 20px;
}

.reminder-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.quick-contact {
    text-align: center;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6c5ce7;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.quick-contact-btn:hover {
    background: #a29bfe;
    color: white;
    transform: translateY(-2px);
}

.contact-note {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.related-pages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-pages li {
    margin-bottom: 10px;
}

.related-pages a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.related-pages a:hover {
    color: #6c5ce7;
}

.related-pages i {
    color: #6c5ce7;
    width: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .disclaimer-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .disclaimer-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
} 