/* ===============================================
   英雄区域样式
   =============================================== */

/* 英雄区域（顶部大图区域）
   主要用于展示服务器欢迎信息和状态
*/
.hero {
    text-align: center;
    padding: 60px 0 40px;
    margin-bottom: 40px;
    position: relative;
}

/* 英雄区域背景渐变
   添加红色径向渐变背景效果，增强视觉层次感
*/
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* 英雄区域主标题
   使用Orbitron字体，添加红色渐变文字效果
*/
.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #8B0000, #FF4500, #8B0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

/* 英雄区域描述文字
   设置字体大小和颜色，限制最大宽度
*/
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #b0b0b0;
}

/* ===============================================
   服务器状态区域样式
   =============================================== */

/* 服务器状态容器 - 合并时间和玩家人数
   显示服务器在线人数、实时时间和游戏时间
*/
.hero .server-status-container {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #8B0000, #FF4500, #8B0000) 1;
    border-radius: 20px;
    padding: 40px 50px;
    width: 80%;
    max-width: 1200px;
    box-shadow: 
        0 0 30px rgba(139, 0, 0, 0.4),
        inset 0 0 20px rgba(139, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* 服务器状态容器悬停效果
   鼠标悬停时添加轻微的阴影变化和缩放效果
*/
.hero .server-status-container:hover {
    box-shadow: 
        0 0 40px rgba(139, 0, 0, 0.6),
        inset 0 0 25px rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* 辅助信息区域 - 包含时间和刷新按钮
   使用Flexbox布局，实现时间显示和刷新按钮的排列
*/
.auxiliary-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* 实时时间显示容器
   显示当前系统时间和日期
*/
.real-time-display {
    background-color: rgba(10, 10, 10, 0.6);
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

/* 实时时间显示悬停效果
   鼠标悬停时添加边框颜色变化
*/
.real-time-display:hover {
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

/* 游戏内时间显示容器
   显示游戏内的时间和日夜循环状态
*/
.game-time-display {
    background-color: rgba(10, 10, 10, 0.6);
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

/* 游戏内时间显示悬停效果
   鼠标悬停时添加边框颜色变化
*/
.game-time-display:hover {
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

/* 时间副标题
   用于游戏内时间显示的标签
*/
.time-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #FF8C00;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 时间标题
   服务器在线人数区域的标题
*/
.time-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FF4500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

/* 玩家在线人数显示
   服务器在线人数的主要显示样式
*/
.player-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    margin: 15px 0;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* 玩家人数脉冲动画
   为玩家人数显示添加呼吸灯效果
*/
@keyframes pulse {
    0% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 0, 0.9);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    }
}

/* 实时时间显示
   当前系统时间的显示样式
*/
#real-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 5px;
}

/* 实时日期显示
   当前系统日期的显示样式
*/
#real-date {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* 游戏内时间显示
   游戏内时间的显示样式
*/
#game-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E90FF;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
    margin-bottom: 5px;
}

/* 游戏内日夜循环状态显示
   游戏内日夜循环状态的显示样式
*/
#game-cycle {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* 刷新按钮样式
   用于刷新服务器状态的按钮样式
*/
.refresh-btn {
    background: linear-gradient(135deg, #8B0000, #FF4500);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 刷新按钮悬停效果
   鼠标悬停时添加缩放和阴影变化
*/
.refresh-btn:hover {
    background: linear-gradient(135deg, #FF4500, #8B0000);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px) scale(1.05);
}

/* 刷新按钮点击效果
   鼠标点击时添加按压效果
*/
.refresh-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

/* 刷新按钮加载状态
   按钮点击后的加载状态样式
*/
.refresh-btn.loading {
    animation: spin 1s linear infinite;
    opacity: 0.8;
    cursor: not-allowed;
}

/* 刷新按钮旋转动画
   按钮加载时的旋转动画
*/
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式设计：小屏幕下调整布局
   在小屏幕设备上垂直排列辅助信息
*/
@media (max-width: 768px) {
    .auxiliary-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .real-time-display,
    .game-time-display {
        width: 100%;
        min-width: unset;
    }
    
    .hero .server-status-container {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .player-count {
        font-size: 2.5rem;
    }
    
    #real-time,
    #game-time {
        font-size: 1.2rem;
    }
}

/* 响应式设计：超小屏幕下调整布局
   在超小屏幕设备上进一步调整样式
*/
@media (max-width: 480px) {
    .auxiliary-info {
        gap: 15px;
    }
    
    .real-time-display,
    .game-time-display {
        padding: 10px 15px;
    }
    
    .player-count {
        font-size: 2rem;
    }
    
    .time-title {
        font-size: 1.1rem;
    }
    
    .refresh-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===============================================
   地图坐标样式
   =============================================== */

/* 地图控制区域样式
   包含坐标输入和控制按钮
*/
.map-controls {
    margin-bottom: 20px;
}

/* 坐标输入容器样式
   包含输入框和按钮的布局
*/
.coordinate-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* 坐标输入字段样式
   输入坐标的文本框样式
*/
.coordinate-field {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 5px;
    background-color: rgba(10, 10, 10, 0.6);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
}

/* 坐标输入字段聚焦效果
   输入框获得焦点时的样式
*/
.coordinate-field:focus {
    outline: none;
    border-color: #FF4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

/* 坐标按钮样式
   控制按钮的基本样式
*/
.coordinate-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #8B0000, #FF4500);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3);
}

/* 坐标按钮悬停效果
   鼠标悬停时按钮的样式
*/
.coordinate-btn:hover {
    background: linear-gradient(135deg, #FF4500, #8B0000);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* 坐标按钮点击效果
   鼠标点击时按钮的样式
*/
.coordinate-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(139, 0, 0, 0.3);
}

/* 坐标结果显示样式
   显示坐标处理结果的区域样式
*/
.coordinate-result {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.3);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 地图容器样式
   包含地图和信息的整体容器
*/
.map-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 地图包装器样式
   包含地图图片和标记的容器
*/
.map-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

/* 地图图片样式
   地图图片的基本样式
*/
.map-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: contain;
}

/* 坐标标记样式
   在地图上显示坐标位置的标记
*/
.coordinate-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 0, 0, 0.8);
    border: 2px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: pulse 2s infinite;
    display: none;
    z-index: 10;
}

/* 地图放大按钮样式
   用于放大地图的按钮
*/
.map-zoom-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border: 1px solid rgba(139, 0, 0, 0.5);
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    z-index: 5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 地图放大按钮悬停效果
   鼠标悬停时的样式
*/
.map-zoom-btn:hover {
    background-color: rgba(139, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

/* 地图放大按钮图标样式
   按钮中图标的样式
*/
.map-zoom-btn i {
    font-size: 0.9rem;
}

/* 坐标标记显示状态
   标记显示时的样式
*/
.coordinate-marker.show {
    display: block;
}

/* 地图信息样式
   显示使用说明的区域样式
*/
.map-info {
    flex: 0 0 250px;
    background-color: rgba(10, 10, 10, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 地图信息标题样式
   信息区域的标题样式
*/
.map-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #FF8C00;
    margin-bottom: 15px;
}

/* 地图信息列表样式
   信息区域的列表样式
*/
.map-info ul {
    list-style-type: none;
    padding: 0;
}

/* 地图信息列表项样式
   列表项的基本样式
*/
.map-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

/* 地图信息列表项最后一项样式
   最后一个列表项移除底部边框
*/
.map-info li:last-child {
    border-bottom: none;
}

/* 地图信息列表项中的强调文本样式
   列表项中的加粗文本样式
*/
.map-info li strong {
    color: #FF4500;
    margin-right: 5px;
}

/* 响应式设计：小屏幕下调整地图布局
   在小屏幕设备上调整地图和信息的布局
*/
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
    }
    
    .map-info {
        flex: 1;
        min-width: unset;
    }
    
    .coordinate-input {
        flex-direction: column;
    }
    
    .coordinate-field {
        min-width: unset;
    }
    
    .coordinate-btn {
        width: 100%;
        text-align: center;
    }
}

/* 响应式设计：超小屏幕下调整地图布局
   在超小屏幕设备上进一步调整样式
*/
@media (max-width: 480px) {
    .map-wrapper {
        min-width: unset;
    }
    
    .coordinate-field {
        font-size: 0.9rem;
    }
    
    .coordinate-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* ===============================================
   内容区域通用样式
   =============================================== */

/* 内容区域通用样式
   用于各个主要内容区域的统一样式
*/
.content-section {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 最后一个内容区域移除底部边框
   确保页面底部干净整洁
*/
.content-section:last-of-type {
    border-bottom: none;
}

/* 区域标题样式
   用于各个内容区域的标题
*/
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #FF4500;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* 区域标题底部装饰线
   为标题添加红色下划线装饰
*/
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #8B0000;
}

/* VIP区域特殊标题样式
   为VIP区域标题添加金色渐变效果
*/
#vip .section-title {
    background: linear-gradient(to right, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* VIP区域特殊装饰线
   为VIP区域标题添加金色渐变下划线
*/
#vip .section-title::after {
    background: linear-gradient(to right, #FFD700, #FFA500);
}

/* ===============================================
   卡片样式
   =============================================== */

/* 卡片样式
   用于各种信息卡片的统一样式
*/
.card {
    background-color: rgba(25, 25, 35, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #8B0000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* VIP卡片特殊样式
   为VIP区域的卡片添加金色边框
*/
#vip .card {
    border-left: 5px solid #FFD700;
}

/* 卡片悬停效果
   鼠标悬停时卡片向上浮动
*/
.card:hover {
    transform: translateY(-5px);
}

/* 卡片标题
   卡片内部标题的样式
*/
.card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #FF8C00;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* VIP卡片标题特殊样式
   为VIP卡片标题添加金色文字
*/
#vip .card h3 {
    color: #FFD700;
}

/* 卡片标题图标
   卡片标题图标的颜色
*/
.card h3 i {
    color: #8B0000;
}

/* VIP卡片图标特殊样式
   为VIP卡片图标添加金色
*/
#vip .card h3 i {
    color: #FFD700;
}

/* ===============================================
   规则列表样式
   =============================================== */

/* 规则列表样式
   服务器规则列表的统一样式
*/
.rule-list {
    list-style-type: none;
}

/* 规则列表项
   单个规则项的样式
*/
.rule-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* 最后一个列表项移除边框
   确保列表底部干净整洁
*/
.rule-list li:last-child {
    border-bottom: none;
}

/* 规则列表图标
   规则项图标的颜色
*/
.rule-list i {
    color: #8B0000;
    margin-top: 3px;
}

/* 重要规则特殊样式
   用于突出显示重要规则
*/
.important-rule {
    background-color: rgba(139, 0, 0, 0.1);
    border-left: 4px solid #FF4500;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

/* 重要规则强调文字
   重要规则中强调文字的颜色
*/
.important-rule strong {
    color: #FF4500;
}

/* 规则警告文字样式
   警告文字的颜色
*/
.rule-warning {
    color: #FFD700;
    font-weight: bold;
}

/* 规则惩罚文字样式
   惩罚措施文字的颜色
*/
.rule-penalty {
    color: #FF6347;
    font-weight: bold;
}

/* 规则编号样式
   规则编号的圆形背景样式
*/
.rule-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #8B0000;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
}

/* ===============================================
   设置项网格布局
   =============================================== */

/* 设置项网格布局
   用于服务器设置、物资倍率等信息的网格布局
*/
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* 单个设置项样式
   单个设置信息的卡片样式
*/
.setting-item {
    background-color: rgba(30, 30, 40, 0.8);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

/* 设置项标题
   设置项的标题样式
*/
.setting-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #FF8C00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 设置项值显示
   设置项值的显示样式
*/
.setting-value {
    font-size: 1.1rem;
    color: #e0e0e0;
    padding: 8px 12px;
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 5px;
    border: 1px solid #333;
    margin-top: 5px;
    display: inline-block;
}

/* IP地址复制按钮特殊样式
   用于IP地址复制功能的特殊样式
*/
.ip-copy {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* IP地址复制按钮悬停效果
   IP地址复制按钮的悬停效果
*/
.ip-copy:hover {
    background-color: rgba(255, 69, 0, 0.2);
    border-color: #FF4500;
}

/* 复制成功提示框
   复制IP地址成功后的提示框
*/
.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

/* 显示提示框
   显示复制成功提示框的样式
*/
.copy-tooltip.show {
    opacity: 1;
}

/* 物资倍率特殊样式
   物资倍率显示的特殊样式
*/
.loot-multiplier {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 物资图标容器
   物资类型图标的容器样式
*/
.loot-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* 大世界物资图标样式
   大世界物资图标的绿色样式
*/
.world-loot .loot-icon {
    background-color: rgba(0, 100, 0, 0.3);
    color: #32CD32;
}

/* 蓝色区域物资图标样式
   蓝色区域物资图标的蓝色样式
*/
.bluezone-loot .loot-icon {
    background-color: rgba(30, 144, 255, 0.3);
    color: #1E90FF;
}

/* 红色区域物资图标样式
   红色区域物资图标的红色样式
*/
.redzone-loot .loot-icon {
    background-color: rgba(220, 20, 60, 0.3);
    color: #DC143C;
}

/* ===============================================
   服务器信息卡片网格
   =============================================== */

/* 服务器信息卡片网格
   用于服务器概览信息的网格布局
*/
.server-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* 信息卡片样式
   单个服务器信息卡片的样式
*/
.info-card {
    background-color: rgba(25, 25, 35, 0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #8B0000;
}

/* 信息卡片图标
   信息卡片图标的样式
*/
.info-card i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 15px;
}

/* 信息卡片标题
   信息卡片标题的样式
*/
.info-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FF8C00;
}

/* ===============================================
   VIP表格样式
   =============================================== */

/* VIP表格容器
   用于包裹VIP等级表格，添加滚动功能
*/
.vip-table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* VIP表格
   VIP等级详情表格的基本样式
*/
.vip-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

/* VIP表格表头
   表格表头的金色样式
*/
.vip-table th {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 15px 10px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

/* VIP表格单元格
   表格单元格的样式
*/
.vip-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    vertical-align: middle;
}

/* VIP表格行悬停效果
   鼠标悬停时表格行的样式
*/
.vip-table tr:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

/* VIP表格偶数行样式
   表格偶数行的背景色
*/
.vip-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

/* VIP表格偶数行悬停效果
   鼠标悬停时偶数行的样式
*/
.vip-table tr:nth-child(even):hover {
    background-color: rgba(255, 215, 0, 0.05);
}

/* VIP等级徽章
   VIP等级标签的金色样式
*/
.vip-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* VIP功能支持样式
   表示功能支持的绿色样式
*/
.vip-feature-yes {
    color: #32CD32;
    font-weight: bold;
}

/* VIP功能不支持样式
   表示功能不支持的灰色样式
*/
.vip-feature-no {
    color: #888;
}

/* VIP价格样式
   VIP价格的金色样式
*/
.vip-price {
    color: #FFD700;
    font-weight: bold;
}

/* VIP原价样式
   VIP原价的删除线样式
*/
.vip-original-price {
    color: #888;
    text-decoration: line-through;
    margin-right: 5px;
}

/* VIP特殊提示框
   VIP特殊优惠提示框的样式
*/
.vip-special {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

/* VIP特殊提示框标题
   VIP特殊优惠提示框的标题样式
*/
.vip-special h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

/* ===============================================
   建筑模板网格布局
   =============================================== */

/* 建筑模板网格布局
   用于建筑模板展示的网格布局
*/
.buildings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* 单个建筑项样式
   单个建筑模板卡片的样式
*/
.building-item {
    background-color: rgba(30, 30, 40, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* 建筑项悬停效果
   鼠标悬停时建筑卡片向上浮动
*/
.building-item:hover {
    transform: translateY(-5px);
}

/* 建筑图片容器
   建筑模板图片的容器样式
*/
.building-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: rgba(30, 30, 40, 0.8);
}

/* 建筑图片样式
   建筑模板图片的样式
*/
.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* 建筑图片悬停效果
   鼠标悬停时图片放大效果
*/
.building-item:hover .building-image img {
    transform: scale(1.05);
}

/* 建筑信息容器
   建筑模板信息的容器样式
*/
.building-info {
    padding: 20px;
}

/* 建筑标题
   建筑模板的标题样式
*/
.building-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

/* 建筑描述
   建筑模板的描述文字样式
*/
.building-info p {
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 建筑价格
   建筑模板的价格样式
*/
.building-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FF4500;
    padding: 8px 12px;
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 5px;
    border: 1px solid #333;
    display: inline-block;
}

/* 响应式设计：小屏幕下调整建筑模板网格
   在小屏幕设备上改为单列布局
*/
@media (max-width: 768px) {
    .buildings-grid {
        grid-template-columns: 1fr;
    }
    
    .building-image {
        height: 180px;
    }
}

/* ===============================================
   返回顶部按钮样式
   =============================================== */

/* 返回顶部按钮样式
   页面滚动到一定位置后显示的返回顶部按钮
*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(139, 0, 0, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* 返回顶部按钮显示状态
   按钮显示时的样式
*/
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* 返回顶部按钮悬停效果
   鼠标悬停时按钮的样式
*/
.back-to-top:hover {
    background-color: rgba(255, 69, 0, 0.9);
    transform: translateY(-5px);
}



/* ===============================================
   分页导航样式
   =============================================== */

/* 分页容器
   分页导航的主容器，包含分页控件和每页显示数量控制
*/
.pagination-container {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 分页控件容器
   包含上一页、下一页按钮和页码按钮
*/
.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 分页按钮样式
   上一页和下一页按钮的样式
*/
.page-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* 分页按钮悬停效果
   鼠标悬停时分页按钮的样式
*/
.page-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 分页按钮禁用状态
   禁用时分页按钮的样式
*/
.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 页码容器
   页码按钮的容器
*/
.page-numbers {
    display: flex;
    gap: 5px;
}

/* 页码按钮样式
   单个页码按钮的样式
*/
.page-number {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 页码按钮悬停效果
   鼠标悬停时页码按钮的样式
*/
.page-number:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 页码按钮激活状态
   当前页码按钮的样式
*/
.page-number.active {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* 每页显示数量控制
   控制每页显示多少个建筑模板的控件
*/
.page-size-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
}

/* 每页显示数量选择框
   选择每页显示数量的下拉框样式
*/
.page-size-control select {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}

/* 每页显示数量选择框选项
   下拉框选项的样式
*/
.page-size-control select option {
    background-color: #333;
    color: #fff;
}

/* 响应式分页样式
   在小屏幕设备上调整分页控件布局
*/
@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-size-control {
        width: 100%;
        justify-content: center;
    }
}