/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", sans-serif; /* 优先使用微软雅黑 */
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* 浅灰色背景 */
}

.container {
    width: 90%;
    max-width: 1400px; /* 增加最大宽度，更宽屏 */
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 120px 20px; /* 增加垂直内边距，更显大方 */
}

.hero h1 {
    font-size: 3rem; /* 增大标题 */
    margin-bottom: 1rem;
    font-weight: bold; /* 微软雅黑下加粗更明显 */
}

.hero p {
    font-size: 1.5rem; /* 增大副标题 */
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b; /* 鲜艳的橙红色按钮 */
    color: white;
    padding: 15px 40px; /* 增加按钮内边距 */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem; /* 增大按钮文字 */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-3px); /* 增加悬停提升效果 */
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* General Section */
.section {
    padding: 80px 0; /* 增加段落间距，更显大方 */
}

.section h2 {
    text-align: center;
    font-size: 2.5rem; /* 增大段落标题 */
    margin-bottom: 3rem; /* 增加与下方内容的距离 */
    color: #2c3e50;
    font-weight: bold; /* 加粗标题 */
}

/* Why Protect Section */
.why-protect .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 增加卡片最小宽度 */
    gap: 30px; /* 增加卡片间距 */
}

.card {
    background: white;
    padding: 40px; /* 增加卡片内边距 */
    border-radius: 15px; /* 增加圆角 */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* 增加阴影深度 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-15px); /* 增加悬停提升效果 */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* 增加悬停阴影 */
}

.card h3 {
    color: #3498db; /* 蓝色标题 */
    margin-bottom: 20px; /* 增加标题与内容距离 */
    font-size: 1.5rem; /* 增大卡片标题 */
    font-weight: bold; /* 加粗 */
}

.card p {
    font-size: 1.1rem; /* 增大卡片文字 */
}

/* Info Visibility Section */
.info-visibility, .privacy-solution {
    background-color: #eef2f7; /* 淡蓝色背景 */
}

.info-visibility-content, .privacy-solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* 增加内容项间距 */
}

.info-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.info-list li {
    background: #2ecc71; /* 绿色背景 */
    color: white;
    padding: 12px 20px; /* 增加列表项内边距 */
    margin: 8px 0; /* 增加列表项间距 */
    border-radius: 8px; /* 增加圆角 */
    display: inline-block;
    width: fit-content;
    min-width: 180px; /* 增加最小宽度 */
    text-align: center;
    font-size: 1.1rem; /* 增大文字 */
    font-weight: bold; /* 加粗 */
}

.info-visualization {
    text-align: center;
    padding: 30px; /* 增加内边距 */
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px; /* 增加最大宽度 */
}

.whois-icon {
    font-size: 4rem; /* 增大图标 */
    margin-bottom: 15px;
}

.public-access {
    font-weight: bold;
    color: #e74c3c; /* 红色 */
    font-size: 1.2rem; /* 增大文字 */
}

/* Privacy Solution Section */
.privacy-solution-content .info-visualization {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px; /* 增加间距 */
}

.real-info, .proxy-info, .public-whois {
    background: #3498db;
    color: white;
    padding: 15px 25px; /* 增加内边距 */
    border-radius: 8px;
    text-align: center;
    min-width: 150px;
    font-size: 1.1rem; /* 增大文字 */
    font-weight: bold; /* 加粗 */
}

.arrow {
    font-size: 2rem; /* 增大箭头 */
    color: #7f8c8d;
}

/* Call to Action Section */
.call-to-action {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.call-to-action h2 {
    color: white;
    font-size: 2.5rem; /* 增大标题 */
}

.call-to-action p {
    max-width: 700px; /* 增加最大宽度 */
    margin: 0 auto 2.5rem; /* 增加下方间距 */
    opacity: 0.9;
    font-size: 1.2rem; /* 增大文字 */
}

/* Links Section */
.links-section {
    background-color: white;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 增加链接项最小宽度 */
    gap: 20px; /* 增加链接间距 */
    list-style: none;
}

.links-grid a {
    display: block;
    padding: 15px 20px; /* 增加链接内边距 */
    background-color: #f1f1f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px; /* 增加圆角 */
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem; /* 增大链接文字 */
    font-weight: bold; /* 加粗 */
}

.links-grid a:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px); /* 悬停提升效果 */
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px; /* 增加内边距 */
    text-align: center;
    font-size: 1rem; /* 保持字体大小 */
}

.footer p {
    margin-bottom: 15px; /* 增加段落间距 */
    line-height: 1.8; /* 增加行高，更易读 */
}

/* Responsive Design - 针对更宽屏的优化 */
@media (min-width: 768px) {
    .container {
        width: 85%;
        max-width: 1600px; /* 进一步放宽最大宽度 */
    }
    .hero {
        padding: 150px 20px; /* 在中等屏幕上也增加高度 */
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.8rem;
    }
    .section h2 {
        font-size: 3rem; /* 在中等屏幕上更大 */
    }
    .info-visibility-content, .privacy-solution-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .info-list {
        flex: 1;
        text-align: left;
        padding-right: 30px; /* 在行模式下增加右边距 */
    }
    .info-visualization {
        flex: 0 0 auto;
        max-width: 400px; /* 在行模式下调整宽度 */
    }
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 在中等屏幕上增加链接项最小宽度 */
        gap: 25px; /* 增加间距 */
    }
}

@media (min-width: 1200px) {
    .container {
        width: 80%; /* 在大屏幕上使用更小的边距百分比 */
    }
    .hero h1 {
        font-size: 4rem; /* 在大屏幕上更大 */
    }
    .hero p {
        font-size: 2rem;
    }
    .section h2 {
        font-size: 3.5rem; /* 在大屏幕上更大 */
    }
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 在大屏幕上进一步增加卡片宽度 */
    }
}