:root {
    /* 万圣节主题配色方案 */
    --primary-color: #ff6b35; /* 万圣节橙色 */
    --primary-hover: #e55a2b; /* 深橙色 */
    --secondary-color: #8b5cf6; /* 紫色 */
    --accent-color: #f59e0b; /* 金色 */
    --text-muted: #9ca3af; /* 灰色文字 */
    --text-light: #f3f4f6; /* 浅色文字 */
    --border-color: #374151; /* 深灰色边框 */
    --bg-light: #1f2937; /* 深色背景 */
    --bg-darker: #111827; /* 更深的背景 */
    --bg-card: #1e293b; /* 卡片背景 */
    --shadow-color: rgba(0, 0, 0, 0.8); /* 深色阴影 */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%) !important;
    color: var(--text-light) !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #d45a2a);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-banner a {
    color: white;
    text-decoration: none;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color) !important;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light) !important;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.feature-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-highlight i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* AI Transformation Showcase Styling */
.transformation-showcase {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.transformation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(139, 92, 246, 0.05));
    pointer-events: none;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container .showcase-image {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.image-container .showcase-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--shadow-color);
}
.image-container .showcase-image2{
    width: 80%;
    /*max-width: 280px;
    height: 280px;*/
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.image-container .showcase-image3{
    width: 100%;
    /*max-width: 280px;
    height: 280px;*/
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.watermark {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.ai-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.ai-badge i {
    font-size: 0.9rem;
}

.prompt-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.prompt-box {
    background: linear-gradient(135deg, var(--bg-card), #374151);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 4px 16px var(--shadow-color), 0 0 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.prompt-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.prompt-box2 {
    background: linear-gradient(135deg, var(--bg-card), #374151);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
   /* max-width: 280px;*/
    width: 90%;
    box-shadow: 0 4px 16px var(--shadow-color), 0 0 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.prompt-box2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.prompt-box em {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.prompt-box2 em {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.arrow-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness for transformation showcase */
@media (max-width: 768px) {
    .transformation-showcase {
        padding: 1.5rem;
    }
    
    .image-container .showcase-image {
        max-width: 200px;
        height: 200px;
    }
    
    .prompt-box {
        max-width: 200px;
        padding: 1rem;
    }
    
    .prompt-box em {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .transformation-showcase {
        padding: 1rem;
    }
    
    .image-container .showcase-image {
        max-width: 150px;
        height: 150px;
    }
    
    .prompt-box {
        max-width: 150px;
        padding: 0.8rem;
    }
    
    .prompt-box em {
        font-size: 0.8rem;
    }
    
    .ai-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .watermark {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* Keywords Section Styling */
.keywords-section {
    margin: 2rem 0;
}

.keywords-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.keyword-item {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.keyword-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color) !important;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light) !important;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: all 0.3s ease;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(139, 92, 246, 0.02));
    pointer-events: none;
}

.card:hover {
    box-shadow: 0 4px 8px var(--shadow-color);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.upload-area {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.upload-area:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--bg-card), #374151);
}

.upload-area.dragover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--bg-card), #374151);
}

.upload-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.output-placeholder {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    background: var(--bg-card);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.output-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-color);
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.showcase-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.showcase-image {
    width: 100%;
    /*height: 250px;*/
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-light));
    border-top: 1px solid var(--primary-color);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-brand {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.footer-brand i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.badge-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Tab styling */
.nav-tabs {
    border-bottom: 2px solid var(--border-color);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--primary-color);
    background-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
}

.nav-tabs .nav-link i {
    margin-right: 6px;
}

/* FAQ Section Styling */
.accordion .card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.accordion .card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.accordion .card-header {
    /*background-color: #fff;*/
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    padding: 0;
}

.accordion .card-header:first-child {
    border-radius: 8px 8px 0 0;
}

.accordion .btn-link {
    color: #333;
    text-decoration: none;
    padding: 20px;
    font-size: 1rem;
    border: none;
    background: none;
    width: 100%;
}

.accordion .btn-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.accordion .btn-link:focus {
    box-shadow: none;
    text-decoration: none;
}

.accordion .btn-link i {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion .btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion .card-body {
    padding: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion .card:not(:last-child) {
    margin-bottom: 15px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    .xz_model{
        margin-top: 50px;
    }
}

/* Mobile H5 specific styles */
@media (max-width: 480px) {
    .xz_model{
        margin-top: 50px;
    }
    .navbar-nav .nav-item.active {
       width: 40%;
    }
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* 为H5页面按钮添加间距 */
    .d-flex.flex-column .btn-lg:first-child {
        margin-bottom: 15px;
    }
    
    .d-flex.flex-column .btn-lg:last-child {
        margin-top: 0;
    }
    
    /* 确保按钮容器有适当的间距 */
    .d-flex.flex-column.flex-sm-row {
        gap: 15px;
    }
    
    .d-flex.flex-column.flex-sm-row .btn-lg {
        margin-bottom: 0;
    }
    
    .feature-highlights {
        margin-top: 2rem;
        gap: 0.8rem;
    }
    
    .feature-highlight {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.8rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .upload-area {
        padding: 1.5rem 1rem;
    }
    
    .upload-icon {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .accordion .btn-link {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .accordion .card-body {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 10px;
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .showcase-image {
        height: 200px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }
    
    /* Keywords Section Mobile Styles */
    .keywords-container {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .keyword-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
.xz_model{
    margin-top: 100px;
}

 /* Navigation Active State */
 .navbar-nav .nav-item.active {
    border-bottom: 2px solid var(--primary-color);
}

.navbar-nav .nav-item.active .nav-link {
    font-weight: bold;
    color: var(--primary-color) !important;
}

/* 万圣节主题额外效果 - 已移除发光效果 */

/* 万圣节背景粒子效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 107, 53, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* 万圣节主题滚动条 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-hover), #d45a2a);
}

/* 万圣节主题选择文本 */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* 强制设置背景和文字颜色 */
* {
    box-sizing: border-box;
}

html {
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%) !important;
    color: var(--text-light) !important;
}

/* 确保所有文本在黑色背景上可见 */
p, div, span, h1, h2, h3, h4, h5, h6, li, td, th, label, small {
    color: var(--text-light) !important;
}

/* 确保卡片内容可见 */
.card-body {
    background: var(--bg-card) !important;
    color: var(--text-light) !important;
}

.card-body p, .card-body div, .card-body span {
    color: var(--text-light) !important;
}

/* 确保表单元素可见 */
.form-control {
    background: var(--bg-card) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--primary-color) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

/* 确保所有section都有黑色背景 */
section {
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%) !important;
}

/* 确保容器背景 */
.container {
    background: transparent !important;
}

/* 确保所有文本区域可见 */
textarea {
    background: var(--bg-card) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--primary-color) !important;
}
