/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 我的世界像素字体 */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    /* 我的世界风格像素字体 */
    font-family: 'Press Start 2P', 'Orbitron', 'Courier New', monospace;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #6b8e23 100%);
    min-height: 100vh;
    /* 增强像素效果 */
    image-rendering: pixelated;
    font-smooth: never;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 导航栏样式 - 我的世界风格 */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* 我的世界方块风格边框 */
    border-bottom: 4px solid #8fbc8f;
    border-image: linear-gradient(90deg, #8fbc8f 0%, #90ee90 50%, #8fbc8f 100%) 1;
    box-shadow: 
        0 4px 0 #1a3a0e,
        0 8px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 
        2px 2px 0 #1a3a0e,
        4px 4px 0 rgba(0,0,0,0.5);
    letter-spacing: 2px;
    color: #90ee90;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0.8rem 1.2rem;
    /* 我的世界方块按钮风格 */
    background: linear-gradient(145deg, #4a7c59 0%, #2d5016 100%);
    border: 2px solid #8fbc8f;
    border-radius: 0;
    box-shadow: 
        2px 2px 0 #1a3a0e,
        4px 4px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.2);
    text-shadow: 1px 1px 0 #1a3a0e;
    letter-spacing: 1px;
}

.nav-links a:hover {
    background: linear-gradient(145deg, #8fbc8f 0%, #4a7c59 100%);
    transform: translate(-1px, -1px);
    box-shadow: 
        3px 3px 0 #1a3a0e,
        5px 5px 0 rgba(0,0,0,0.4),
        inset 1px 1px 0 rgba(255,255,255,0.3);
    border-color: #90ee90;
    color: #1a3a0e;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

/* 主要内容区域 */
main {
    margin-top: 90px;
}

/* 英雄区域 - 我的世界风格 */
.hero {
    /* 添加背景图片 */
    background: 
        linear-gradient(rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.8), rgba(143, 188, 143, 0.6)),
        url('/bg/bg.png') center/cover no-repeat,
        linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #8fbc8f 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* 我的世界方块背景纹理 */
    background-attachment: fixed;
    /* 增强视觉效果 */
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 增强我的世界方块纹理效果 */
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 
        3px 3px 0 #1a3a0e,
        6px 6px 0 rgba(0,0,0,0.7),
        9px 9px 0 rgba(0,0,0,0.4);
    letter-spacing: 3px;
    line-height: 1.4;
    color: #90ee90;
    margin-bottom: 3rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-family: 'Orbitron', monospace;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #1a3a0e;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid rgba(144, 238, 144, 0.3);
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a3a0e;
    padding: 0.8rem 1.5rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 0;
    border: 2px solid #FFD700;
    box-shadow: 
        3px 3px 0 #B8860B,
        6px 6px 0 rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    letter-spacing: 1px;
}

/* 按钮容器样式 */
.hero-content .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-button {
    /* 我的世界方块按钮风格 */
    background: linear-gradient(145deg, #4CAF50 0%, #2e7d32 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    font-size: 1rem;
    font-family: 'Press Start 2P', monospace;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    margin: 0.5rem;
    letter-spacing: 1px;
    /* 我的世界方块边框和阴影 */
    border: 4px solid #66bb6a;
    box-shadow: 
        5px 5px 0 #1b5e20,
        10px 10px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.3);
    text-shadow: 2px 2px 0 #1b5e20;
    position: relative;
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(145deg, #66bb6a 0%, #4CAF50 100%);
    transform: translate(-2px, -2px);
    animation: heroGlow 1.5s ease-in-out infinite;
    box-shadow: 
        7px 7px 0 #1b5e20,
        14px 14px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.4),
        0 0 25px rgba(255,255,255,0.2);
}

.cta-button:active {
    transform: translate(1px, 1px);
    box-shadow: 
        2px 2px 0 #1b5e20,
        4px 4px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2);
}

.cta-button.primary {
    background: linear-gradient(145deg, #4CAF50 0%, #2e7d32 100%);
    border-color: #66bb6a;
}

.cta-button.secondary {
    background: linear-gradient(145deg, #2196F3 0%, #1565C0 100%);
    border-color: #42A5F5;
}

.cta-button.secondary:hover {
    background: linear-gradient(145deg, #42A5F5 0%, #2196F3 100%);
    border-color: #64B5F6;
}

.cta-button.diagnostic {
    background: linear-gradient(145deg, #FF9800 0%, #E65100 100%);
    border-color: #FFB74D;
}

.cta-button.diagnostic:hover {
    background: linear-gradient(145deg, #FFB74D 0%, #FF9800 100%);
    border-color: #FFCC02;
}

.cta-button.qq-group {
    background: linear-gradient(145deg, #9C27B0 0%, #6A1B9A 100%);
    border-color: #BA68C8;
}

.cta-button.qq-group:hover {
    background: linear-gradient(145deg, #BA68C8 0%, #9C27B0 100%);
    border-color: #CE93D8;
}

/* Hero stats section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    background: rgba(0,0,0,0.4);
    padding: 1.5rem 2rem;
    border: 2px solid rgba(144, 238, 144, 0.3);
    border-radius: 8px;
    box-shadow: 
        3px 3px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.1);
}

.stat-number {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 0 #B8860B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #90ee90;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #1a3a0e;
}

/* 响应式设计 - 小屏幕时改为纵向排列 */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* 特色服务器区域 */
.features {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2d5016;
    font-family: 'Press Start 2P', monospace;
    text-shadow: 2px 2px 0 rgba(143, 188, 143, 0.5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 100%;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid #4a7c59;
    /* 我的世界方块风格 */
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.5);
    /* 方块纹理背景 */
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(74, 124, 89, 0.03) 25%, rgba(74, 124, 89, 0.03) 50%, transparent 50%, transparent 75%, rgba(74, 124, 89, 0.03) 75%);
    background-size: 12px 12px;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0 #2d5016,
        8px 8px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.6);
    border-color: #8fbc8f;
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(143, 188, 143, 0.08) 25%, rgba(143, 188, 143, 0.08) 50%, transparent 50%, transparent 75%, rgba(143, 188, 143, 0.08) 75%);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
    font-family: 'Press Start 2P', monospace;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.server-ip {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #4a7c59;
    border: 2px solid #e9ecef;
    margin-top: 1rem;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

.join-button {
    background: linear-gradient(145deg, #4CAF50 0%, #2e7d32 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: bold;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    border: 2px solid #66bb6a;
    box-shadow: 
        2px 2px 0 #1b5e20,
        4px 4px 0 rgba(0,0,0,0.3);
    cursor: pointer;
}

.join-button:hover {
    background: linear-gradient(145deg, #66bb6a 0%, #4CAF50 100%);
    transform: translate(-1px, -1px);
    box-shadow: 
        3px 3px 0 #1b5e20,
        6px 6px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.3);
    border-color: #81c784;
}

/* 测试按钮区域样式 */
.test-links-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #8fbc8f;
    border-radius: 0;
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.1);
}

.test-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: 400;
    color: white;
    border: 2px solid;
    border-radius: 0; /* 我的世界方块风格 */
    transition: all 0.2s ease;
    letter-spacing: 1px;
    box-shadow: 
        2px 2px 0 rgba(0,0,0,0.5),
        4px 4px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.2);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.test-button:hover {
    transform: translate(-1px, -1px);
    box-shadow: 
        3px 3px 0 rgba(0,0,0,0.5),
        5px 5px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.3);
}

.test-button.red {
    background: linear-gradient(145deg, #f44336 0%, #d32f2f 100%);
    border-color: #ffcdd2;
}

.test-button.red:hover {
    background: linear-gradient(145deg, #e53935 0%, #c62828 100%);
}

.test-button.green {
    background: linear-gradient(145deg, #4caf50 0%, #388e3c 100%);
    border-color: #c8e6c9;
}

.test-button.green:hover {
    background: linear-gradient(145deg, #43a047 0%, #2e7d32 100%);
}

.test-button.purple {
    background: linear-gradient(145deg, #9c27b0 0%, #7b1fa2 100%);
    border-color: #e1bee7;
}

.test-button.purple:hover {
    background: linear-gradient(145deg, #8e24aa 0%, #6a1b9a 100%);
}

.test-button.blue {
    background: linear-gradient(145deg, #2196f3 0%, #1976d2 100%);
    border-color: #bbdefb;
}

.test-button.blue:hover {
    background: linear-gradient(145deg, #1e88e5 0%, #1565c0 100%);
}

.test-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.6rem;
    margin-top: 1rem;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

/* 移动端测试按钮和文件按钮优化 */
@media (max-width: 768px) {
    .test-button {
        font-size: 0.6rem;
        padding: 0.7rem 1.2rem;
        margin: 0.3rem;
        letter-spacing: 0.5px;
    }
    
    .file-button {
        font-size: 0.6rem;
        padding: 0.8rem 1.2rem;
        margin: 0.3rem;
        letter-spacing: 0.5px;
    }
    
    .action-buttons {
        padding: 1.5rem 1rem;
        gap: 0.3rem;
    }
    
    .test-links-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .test-description {
        font-size: 0.55rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .test-button {
        font-size: 0.55rem;
        padding: 0.6rem 1rem;
        display: block;
        margin: 0.5rem auto;
        width: 90%;
        max-width: 300px;
    }
    
    .file-button {
        font-size: 0.55rem;
        padding: 0.7rem 1rem;
        display: block;
        margin: 0.5rem auto;
        width: 90%;
        max-width: 280px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0.5rem;
    }
}

/* 文件访问按钮 - 我的世界像素风格 */
.file-button {
    display: inline-block;
    background: linear-gradient(145deg, #2d5016 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0.5rem;
    text-decoration: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: 400;
    border: 2px solid #8fbc8f;
    border-radius: 0; /* 我的世界方块风格 */
    transition: all 0.2s ease;
    letter-spacing: 1px;
    box-shadow: 
        3px 3px 0 #1a3a0e,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2);
    text-shadow: 
        1px 1px 0 #1a3a0e,
        2px 2px 0 rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.file-button:hover {
    background: linear-gradient(145deg, #4a7c59 0%, #6b8e23 100%);
    transform: translate(-1px, -1px);
    box-shadow: 
        4px 4px 0 #1a3a0e,
        7px 7px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.3);
}

.file-button:visited,
.file-button:link,
.file-button:active {
    color: white;
    text-decoration: none;
}

/* 文件访问按钮容器 */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #8fbc8f;
    border-radius: 0;
    margin: 2rem 0;
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.1);
}

/* 强制确保重要样式生效 */
.file-actions .action-buttons .file-button {
    background: linear-gradient(145deg, #2d5016 0%, #4a7c59 100%) !important;
    color: white !important;
    border: 2px solid #8fbc8f !important;
    font-family: 'Press Start 2P', monospace !important;
    border-radius: 0 !important;
}

.test-links-section .test-button {
    background: linear-gradient(145deg, #4caf50 0%, #388e3c 100%) !important;
    border: 2px solid !important;
    border-radius: 0 !important;
    font-family: 'Press Start 2P', monospace !important;
}

.test-links-section .test-button.red {
    background: linear-gradient(145deg, #f44336 0%, #d32f2f 100%) !important;
    border-color: #ffcdd2 !important;
}

.test-links-section .test-button.green {
    background: linear-gradient(145deg, #4caf50 0%, #388e3c 100%) !important;
    border-color: #c8e6c9 !important;
}

.test-links-section .test-button.purple {
    background: linear-gradient(145deg, #9c27b0 0%, #7b1fa2 100%) !important;
    border-color: #e1bee7 !important;
}

.test-links-section .test-button.blue {
    background: linear-gradient(145deg, #2196f3 0%, #1976d2 100%) !important;
    border-color: #bbdefb !important;
}

/* 确保主要按钮样式优先级 */
.hero .button-container .cta-button {
    border: 3px solid #66bb6a !important;
    font-family: 'Press Start 2P', monospace !important;
    border-radius: 0 !important;
}

/* 动画效果定义 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0%, 100% {
        box-shadow: 
            5px 5px 0 #1b5e20,
            10px 10px 0 rgba(0,0,0,0.4),
            inset 3px 3px 0 rgba(255,255,255,0.3);
    }
    50% {
        box-shadow: 
            5px 5px 0 #1b5e20,
            10px 10px 0 rgba(0,0,0,0.4),
            inset 3px 3px 0 rgba(255,255,255,0.3),
            0 0 25px rgba(255,255,255,0.3);
    }
}

/* Particle effect background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,215,0,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(144,238,144,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,215,0,0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(144,238,144,0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-200px); }
}

/* 额外的动画效果 */
@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 文件监控区域样式 */
.file-monitor {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.file-monitor h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #2d5016;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0 #8fbc8f,
        4px 4px 0 rgba(0,0,0,0.2);
}

/* 文件内容网格布局 */
.file-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

/* 文件内容卡片样式 */
.file-content-card {
    background: white;
    padding: 2rem;
    border-radius: 0; /* 我的世界方块风格 */
    border: 3px solid #4a7c59;
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    /* 方块纹理背景 */
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(74, 124, 89, 0.03) 25%, rgba(74, 124, 89, 0.03) 50%, transparent 50%, transparent 75%, rgba(74, 124, 89, 0.03) 75%);
    background-size: 12px 12px;
}

.file-content-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0 #2d5016,
        8px 8px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.6);
    border-color: #8fbc8f;
}

.file-content-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
}

.file-content-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 文件内容显示框 */
.file-content-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 0;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1);
}

/* 简单计数显示 */
.simple-count-display {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 0; /* 我的世界方块风格 */
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2);
    text-shadow: 
        2px 2px 0 #1a3a0e,
        4px 4px 0 rgba(0,0,0,0.3);
    border: 2px solid #8fbc8f;
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
}

/* 延迟显示特定样式 */
#ping-display {
    background: linear-gradient(135deg, #ff9800, #f57c00) !important;
    box-shadow: 
        3px 3px 0 #e65100,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2) !important;
    border: 2px solid #ffcc80 !important;
}

/* 状态显示特定样式 */
#status-display {
    background: linear-gradient(135deg, #2196f3, #1976d2) !important;
    box-shadow: 
        3px 3px 0 #0d47a1,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2) !important;
    border: 2px solid #90caf9 !important;
}

/* 文件信息区域 */
.file-info {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 0;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-left: 4px solid #4CAF50;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1);
}

.file-info p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
    color: #555;
    font-family: 'Press Start 2P', monospace;
}

/* 文件操作区域 */
.file-actions {
    background: white;
    border-radius: 0;
    padding: 2rem;
    border: 3px solid #4a7c59;
    box-shadow: 
        3px 3px 0 #2d5016,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 2rem;
    /* 方块纹理背景 */
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(74, 124, 89, 0.03) 25%, rgba(74, 124, 89, 0.03) 50%, transparent 50%, transparent 75%, rgba(74, 124, 89, 0.03) 75%);
    background-size: 12px 12px;
}

.file-actions h3 {
    color: #2d5016;
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* 文件信息网格 */
.file-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.file-info-item {
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 
        2px 2px 0 #d4d4d4,
        4px 4px 0 rgba(0,0,0,0.2),
        inset 1px 1px 0 rgba(255,255,255,0.5);
}

.file-info-item:hover {
    border-color: #4a7c59;
    background: rgba(74, 124, 89, 0.05);
    transform: translate(-1px, -1px);
    box-shadow: 
        3px 3px 0 #d4d4d4,
        5px 5px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.6);
}

.file-info-item h4 {
    color: #2d5016;
    margin-bottom: 0.8rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.file-info-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
}

.file-info-item code {
    background: #e9ecef;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #495057;
    border: 1px solid #ced4da;
    display: inline-block;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

/* 使用提示区域 */
.file-access-tips {
    background: rgba(45, 80, 22, 0.95);
    color: white;
    padding: 2rem;
    border-radius: 0;
    margin-top: 2rem;
    border: 3px solid #8fbc8f;
    box-shadow: 
        3px 3px 0 #1a3a0e,
        6px 6px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.1);
    /* 方块纹理背景 */
    background-image: 
        linear-gradient(45deg, transparent 25%, rgba(143, 188, 143, 0.1) 25%, rgba(143, 188, 143, 0.1) 50%, transparent 50%, transparent 75%, rgba(143, 188, 143, 0.1) 75%);
    background-size: 16px 16px;
}

.tip-content h4 {
    color: #90ee90;
    font-family: 'Press Start 2P', monospace;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 #1a3a0e;
    letter-spacing: 1px;
}

.tip-content ul {
    list-style: none;
    padding: 0;
}

.tip-content li {
    margin-bottom:  0.5rem;
    font-size: 0.8rem;
    color: #ddd;
    position: relative;
    padding-left: 1.2rem;
}

.tip-content li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #90ee90;
    font-size: 1rem;
    line-height: 1;
}

/* 页脚样式 - 我的世界风格 */
footer {
    background: linear-gradient(135deg, #2d5016 0%, #1a3a0e 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 4px solid #8fbc8f;
    position: relative;
    /* 我的世界方块背景纹理 */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 2px, transparent 2px),
        linear-gradient(45deg, transparent 24%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02) 76%, transparent 77%);
    background-size: 16px 16px, 16px 16px, 32px 32px;
    box-shadow: 
        inset 0 4px 0 #4a7c59,
        inset 0 8px 0 rgba(255,255,255,0.1),
        0 -4px 0 #1a3a0e;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* 增强方块纹理效果 */
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 16px);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer p {
    text-align: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 0 #1a3a0e,
        4px 4px 0 rgba(0,0,0,0.5);
    color: #90ee90;
    margin: 0;
    padding: 1rem 0;
}

/* Footer和其他区域的响应式设计 */
@media (max-width: 768px) {
    footer p {
        font-size: 0.7rem;
        line-height: 1.6;
        letter-spacing: 0.5px;
        padding: 1.5rem 1rem;
    }
    
    .server-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .all-servers {
        padding: 3rem 0;
    }
    
    .all-servers h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .servers-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 0 1.5rem;
    }
    
    footer p {
        font-size: 0.6rem;
        line-height: 1.5;
        letter-spacing: 0.3px;
        padding: 1rem 0.5rem;
    }
    
    .detail-label {
        font-size: 0.6rem;
    }
    
    .detail-value {
        font-size: 0.7rem;
    }
}

/* 功能区域样式 */

/* 增强信息项的特定样式 */
.address-item .info-icon {
    background: #2196F3;
}

.address-item:hover {
    border-color: #2196F3;
}

.version-item .info-icon {
    background: #FF9800;
}

.version-item:hover {
    border-color: #FF9800;
}

.ping-item .info-icon {
    background: #9C27B0;
}

.ping-item:hover {
    border-color: #9C27B0;
}

/* 我的世界风格服务器公告区域 - 简洁大气版 */
.server-announcement {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #2c3e50;
    border-radius: 8px;
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 4px 20px rgba(44, 62, 80, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.server-announcement:hover {
    box-shadow: 
        0 8px 30px rgba(44, 62, 80, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.announcement-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-header h3 {
    margin: 0;
    flex: 1;
    text-align: center;
    font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 公告按钮容器 */
.announcement-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* 公告操作按钮通用样式 - 简洁版 */
.refresh-announcements,
.download-announcements,
.view-announcements-txt {
    color: white;
    border: 1px solid;
    padding: 0.6rem 1.2rem;
    font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* 刷新按钮 */
.refresh-announcements {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-color: #2980b9;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.refresh-announcements:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

/* 下载TXT按钮 */
.download-announcements {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-color: #27ae60;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.download-announcements:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #28b463 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* 查看TXT按钮 */
.view-announcements-txt {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-color: #f39c12;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.view-announcements-txt:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

/* 按钮活动状态 */
.refresh-announcements:active,
.download-announcements:active,
.view-announcements-txt:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 按钮禁用状态 */
.refresh-announcements:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    border-color: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

/* 加载公告状态 */
.loading-announcement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: #4a7c59;
    text-align: center;
}

.loading-announcement .loading-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: loadingRotate 2s linear infinite;
}

.loading-announcement p {
    font-size: 0.8rem;
    margin: 0;
    color: #6b8e23;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}

/* 加载动画 */
@keyframes loadingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 公告项淡入动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 工会排行榜样式 */
.guild-ranking {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.guild-ranking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><rect width="32" height="32" fill="%23333" opacity="0.1"/></svg>');
    background-size: 32px 32px;
    pointer-events: none;
}

.guild-ranking h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 #333, 4px 4px 0 rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.ranking-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ranking-header p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.refresh-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: 2px solid #45a049;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-family: 'Press Start 2P', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 
        2px 2px 0 #2e7d32,
        4px 4px 0 rgba(0,0,0,0.3);
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translate(-2px, -2px);
    box-shadow: 
        4px 4px 0 #2e7d32,
        6px 6px 0 rgba(0,0,0,0.3);
}

.guild-ranking-container {
    position: relative;
    z-index: 1;
}

.guild-ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guild-card {
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    border: 3px solid #555;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        2px 2px 0 #1a1a1a,
        4px 4px 0 rgba(0,0,0,0.5);
    min-height: 320px;
}

.guild-card:hover {
    border-color: #ffd700;
    transform: translate(-2px, -2px);
    box-shadow: 
        4px 4px 0 #1a1a1a,
        6px 6px 0 rgba(0,0,0,0.5),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.guild-rank {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid #333;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.4), 0 0 15px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.guild-rank.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    animation: goldShine 2s infinite;
}

.guild-rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.guild-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
}

@keyframes goldShine {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
}

.guild-header {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.guild-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.guild-creator {
    font-size: 1rem;
    font-weight: 500;
    color: #90EE90;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.3px;
}

.guild-creator::before {
    content: "👑 ";
}

.guild-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.guild-stat {
    text-align: center;
    padding: 0.3rem;
}

.guild-stat-label {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guild-stat-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}

.guild-stat-value.level {
    color: #87CEEB;
}

.guild-stat-value.prosperity {
    color: #FF6B6B;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.guild-stat-value.money {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.guild-stat-value.members {
    color: #90EE90;
}

.guild-stat-value.ore {
    color: #D2691E;
    text-shadow: 0 0 5px rgba(210, 105, 30, 0.3);
}

.guild-stat-value.month-prosperity {
    color: #FF69B4;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

/* 工会额外信息样式 */
.guild-extra-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guild-mode,
.guild-pvp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.guild-mode-label,
.guild-pvp-label {
    font-size: 0.7rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.guild-mode-value,
.guild-pvp-value {
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* 工会描述和世界信息样式 */
.guild-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    border-top: 1px solid #555;
    padding-top: 1rem;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

.guild-world {
    font-size: 0.85rem;
    color: #87CEEB;
    text-align: center;
    margin-top: 0.8rem;
    padding: 0.5rem;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(135, 206, 235, 0.3);
    font-weight: 500;
}

.guild-world::before {
    content: "🌍 ";
    margin-right: 0.3rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guild-ranking-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guild-card {
        padding: 1rem;
    }
    
    .guild-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .guild-extra-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guild-ranking h2 {
        font-size: 1.5rem;
    }
}