/* 基本重置和全局样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* 定义颜色变量 */
    --primary-color: #0056b3; /* 主要深蓝色 */
    --primary-light: #007bff; /* 亮蓝色 (链接/图标) */
    --header-bg: var(--primary-color);
    --header-text: #ffffff;
    --body-bg: #f8f9fa;
    --text-color: #333;
    --heading-color: #343a40;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.08);
    --card-hover-shadow: rgba(0, 0, 0, 0.12);
    --footer-bg: #343a40;
    --footer-text: #ccc;

    /* 定义字体变量 */
    --font-family-base: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-light);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- 页头样式 --- */
header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

header p {
    font-size: 1.1em;
    font-weight: 300;
}

/* --- 主要内容区域 --- */
main {
    padding-bottom: 40px;
}

main h2 { /* 更具体一点 */
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: var(--heading-color);
    font-weight: 700;
}

/* --- 支持选项卡片 --- */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.option {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px var(--card-hover-shadow);
}

.option .icon {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.option h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color); /* 使用主要深蓝色 */
    font-weight: 700;
}

.option p {
    font-size: 0.95em;
    color: #555;
}

.option .availability {
    font-size: 0.85em;
    color: #777;
    margin-top: 15px;
    font-style: italic;
}

/* --- 页脚样式 --- */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

/* --- 响应式调整 --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    main h2 {
        font-size: 1.8em;
    }
    .option h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 0;
    }
    header h1 {
        font-size: 1.8em;
    }
    header p {
        font-size: 1em;
    }
    main h2 {
        font-size: 1.6em;
    }
    .option {
        padding: 20px;
    }
}

/* --- 可能修复 Tawk.to 定位的尝试 (如果需要) --- */
/* 如果 Tawk.to 被意外隐藏，可以尝试强制提高其 z-index */
/* 注意：这通常不是必需的，因为 Tawk.to 自己会设置很高的 z-index */
/* 如果你需要用，需要先用开发者工具找到 Tawk.to 窗口的实际 ID 或 class */
/*
#tawk-container-id, .tawk-widget-class {
    z-index: 2147483647 !important;
}
*/
