/* Genel Ayarlar */
body { 
    background: #0b0e11; 
    font-family: 'Segoe UI', sans-serif; 
    color: white; 
    margin: 0; 
    padding: 0; 
}

/* 1360px Sabit Genişlik ve Ortalama */
.main-container {
    max-width: 1360px;
    margin: 40px auto; /* Üstten pay bırakır ve ortalar */
    padding: 0 20px;
}

/* 5'li Grid Yapısı */
.server-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px; 
}

.card { 
    background: #14171c; 
    border-radius: 8px; 
    overflow: hidden;
    border: 1px solid #23272e; 
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover { 
    border-color: #00f2ff; 
}

/* 600x338 Orantılı Görsel Alanı */
.map-header { 
    width: 100%;
    aspect-ratio: 600 / 338; 
    position: relative;
    overflow: hidden;
}

.map-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.map-name-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 10px; 
    font-weight: bold; 
    font-size: 11px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body { padding: 15px; }

.server-title { 
    font-weight: bold; 
    font-size: 14px; 
    margin-bottom: 15px;
    height: 36px; 
    overflow: hidden; 
    line-height: 1.3; 
    color: #eee;
}

.stat-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 8px; 
    font-size: 12px; 
    color: #888; 
}

.stat-value { color: #00f2ff; font-weight: bold; }

.join-btn { 
    display: block; 
    width: 100%; 
    padding: 10px 0; 
    background: #28a745; 
    color: white; 
    text-align: center; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 4px; 
    font-size: 12px; 
    margin-top: 10px;
    transition: background 0.2s;
}

.join-btn:hover { background: #218838; }

/* Alt Bilgi Listesi */
.info-list {
    margin-top: 15px;
    border-top: 1px solid #23272e;
    padding-top: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-label { color: #888; display: flex; align-items: center; gap: 8px; }
.info-value { color: #fff; font-weight: 500; }

/* IP Kopyalama Alanı */
.copy-ip {
    cursor: pointer;
    color: #00f2ff !important;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.copy-ip:hover { opacity: 0.8; }

/* Ping Sinyal Çubukları */
.ping-bars { display: flex; gap: 2px; align-items: flex-end; height: 12px; }
.bar { width: 3px; background: #28a745; border-radius: 1px; }
.bar.low { height: 4px; }
.bar.mid { height: 8px; }
.bar.high { height: 12px; }
