/* 通用样式 */
body {
    font-family: "Arial", sans-serif; /* 模仿常用字体 */
    margin: 0;
    padding: 0;
    background-color: #444; /* 更暗的灰色背景 */
    color: #000; /* 默认文字颜色改为黑色 */
    line-height: 1.6;
    cursor: default;
}

.header-container, main, footer {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部样式 */
header {
    background-color: #FAF408; 
    color: inherit; /* 头部文字颜色继承 body 的黑色 */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: inherit; /* 导航链接颜色继承 body 的黑色 */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Hero 区块样式 (Banner 图片) */
.hero {
    color: white;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.hero img {
    display: block;
    width: auto;
    height: 500px;
    margin: 0 auto; /* 水平居中 */
    border: 5px solid gold; /* 初始金色边框 */
    animation: gold-shimmer 2s infinite alternate; /* 应用动画 */
}

@keyframes gold-shimmer {
    0% { border-color: gold; }      /* 初始颜色：金色 */
    50% { border-color: #ffd700; }  /* 中间颜色：更亮的金色 (#ffd700 是金色的一种更亮的变体) */
    100% { border-color: gold; }     /* 结束颜色：金色 (循环回到初始颜色) */
}

/* 内容区样式 */
.content {
    padding: 20px 0;
}

.content article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #B0E0E6;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.content h3 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    color: inherit; /* 内容区标题颜色继承 body 的黑色 */
}

.content-image {
    max-width: auto;
    height: 350px;
    display: block;
    margin: 15px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* 底部样式 */
footer {
    background-color: #343a40;
    color: inherit; /* 底部文字颜色继承 body 的黑色 */
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* 颜色强调 (模仿朝鲜网站常用颜色) */
.red-text {
    color: #dc3545; /* 红色 (保持红色强调) */
}

.blue-text {
    color: #007bff; /* 蓝色 (保持蓝色强调，如果需要) */
}

.green-text {
    color: #28a745; /* 绿色 (保持绿色强调，如果需要) */
}

/* 领袖名字特殊样式 */
.leader-name {
    font-weight: bold;
    font-size: 1.2em;
    cursor: default;
	text-shadow: 1px 1px 2px black; /* 添加文字阴影: 水平偏移 1px, 垂直偏移 1px, 模糊半径 2px, 颜色黑色 */
    color: red; /* 金正恩名字保持红色 */
}

.leader-name:hover {
    cursor: none;
}

/* 金色关键词样式 (例如 登陆太阳) */
.keyword-gold {
    color: gold; /* 关键词金色 */
    font-weight: bold; /* 可以选择加粗关键词 */
	text-shadow: 1px 1px 2px black; /* 添加文字阴影: 水平偏移 1px, 垂直偏移 1px, 模糊半径 2px, 颜色黑色 */
}
