/* 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;
    max-width: 1100px;
}

.drop-info-section {
    padding: 60px 0 80px;
    background: #05060a;
}

.drop-info-section .container {
    max-width: 1100px;
}

.drop-info-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.drop-row {
    display: flex;
    gap: 1rem;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
}

.drop-row:last-child {
    margin-bottom: 0;
}

.drop-label {
    flex: 0 0 220px;
    font-weight: 600;
    color: #f09a29;
}

.drop-text {
    flex: 1 1 auto;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.info-box {
    position: relative;
    border-radius: 16px;
    padding: 1.5rem;
    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 16px 48px rgba(0, 0, 0, 0.5), 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: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    position: relative;
}

.info-box-header i {
    font-size: 1.6rem;
    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.1rem;
    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.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #f09a29;
    font-size: 0.9rem;
    flex: 1;
}

.info-value {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.95rem;
    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;
    }
}
