body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

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

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.countdown {
    font-size: 1.5em;
    margin: 20px 0;
    color: #ff9900;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cta-button {
    background: #ff9900;
    color: #000;
    padding: 22px 16px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e68a00;
}

section {
    padding: 40px 20px;
    margin: 20px 0;
    text-align: center;
}

.feature {
    margin-bottom: 30px;
}

/* 整体最新文章区域的样式 */
#latest-articles {
    background-color: #f5f5f5; /* 背景颜色 */
    padding: 30px; /* 增加内边距 */
    margin: 30px 0; /* 调整上下外边距 */
    border-radius: 12px; /* 增大圆角 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* 增强阴影效果 */
    transition: box-shadow 0.3s ease; /* 添加过渡效果 */
}

#latest-articles:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 悬停时增强阴影 */
}

/* 最新文章标题的样式 */
#latest-articles h3 {
    font-size: 28px; /* 增大字体大小 */
    color: #333; /* 字体颜色 */
    margin-bottom: 20px; /* 增大底部外边距 */
    text-align: center; /* 标题居中 */
    text-transform: uppercase; /* 标题大写 */
    letter-spacing: 1px; /* 增加字母间距 */
}

/* 文章列表的样式 */
#latest-articles ul {
    list-style-type: none; /* 去除列表项的默认标记 */
    padding: 0; /* 去除内边距 */
}

/* 列表项的样式 */
#latest-articles ul li {
    margin-bottom: 15px; /* 增大底部外边距 */
    padding: 10px; /* 增加内边距 */
    border-radius: 8px; /* 圆角 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}

#latest-articles ul li:hover {
    background-color: #e9e9e9; /* 悬停时的背景颜色 */
}

/* 文章链接的样式 */
#latest-articles ul li a {
    text-decoration: none; /* 去除下划线 */
    color: #007bff; /* 链接颜色 */
    font-size: 18px; /* 增大字体大小 */
    transition: color 0.3s ease; /* 颜色过渡效果 */
    display: block; /* 使链接占满整个列表项 */
}

/* 鼠标悬停在文章链接上的样式 */
#latest-articles ul li a:hover {
    color: #0056b3; /* 悬停时的链接颜色 */
}

/* 文章标题的样式 */
#latest-articles ul li a span {
    font-weight: bold; /* 加粗 */
    color: #222; /* 标题颜色 */
    display: inline-block; /* 使标题可以设置间距 */
    margin-bottom: 5px; /* 增加底部间距 */
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* 新增侧边栏样式 */
.sidebar {
    float: right;
    width: 30%;
    padding: 20px;
    background-color: #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.sidebar h4 {
    margin-top: 0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #007bff;
}

.sidebar ul li a:hover {
    color: #0056b3;
}