/* Server Info Section Styles */
.server-info-section {
    padding: 100px 0;
    background-image: url('../images/backgruond.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.server-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.server-info-section .container {
    position: relative;
    z-index: 2;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    position: relative;
    border-radius: 18px;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(148, 163, 184, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.info-box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 97, 0.55);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.62), 0 0 28px rgba(59, 130, 246, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    position: relative;
}

.info-box-header i {
    font-size: 2rem;
    color: rgba(0, 255, 97, 0.95);
    filter: drop-shadow(0 6px 14px rgba(59, 130, 246, 0.25));
}

.info-box-header h3 {
 margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #e5e7eb;
    background: linear-gradient(145deg, #9ca3af 0%, #ffffff 38%, #cbd5e1 58%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(226, 232, 240, 0.08);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #ccc;
    font-size: 0.95rem;
    flex: 1;
}

.info-value {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

.info-value.highlight {
    color: #ffd700;
    font-weight: 700;
}

.info-value.highlight-max {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* EXP Party Special Styling */
.info-list.exp-party li {
    transition: all 0.3s ease;
}

.info-list.exp-party li:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .server-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box-header h3 {
        font-size: 1.1rem;
    }

    .info-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .info-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .server-info-section {
        padding: 60px 0;
    }

    .info-box {
        padding: 1.2rem;
    }

    .info-box-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-box-header i {
        font-size: 1.5rem;
    }
}
