/* 全局样式 */
:root {
    --primary-color: #007AFF;
}

/* 深色模式 */
.dark {
    --primary-color: #007AFF;
}

/* 导航栏样式 */
.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo .namtan {
    color: #89D8F9;
}

.nav-logo .film {
    color: #F8DF76;
}

/* 卡片样式 */
.content-card {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.dark .content-card {
    background-color: #1f2937;
}

.content-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #f9fafb;
}

.dark .content-card:hover {
    background-color: #374151;
}

/* 页脚样式 */
.footer {
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.dark .footer {
    background-color: #111827;
    border-color: #374151;
}

/* 主题切换按钮 */
.theme-toggle {
    color: #6b7280;
    padding: 0.625rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.dark .theme-toggle {
    color: #9ca3af;
}

.theme-toggle:hover {
    background-color: #f3f4f6;
}

.dark .theme-toggle:hover {
    background-color: #374151;
}

/* 标题样式 */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.dark .section-title {
    color: white;
}