/* EasyGoin ARK SE Handler - Server Tiles */
.egl-arkse-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.egl-arkse-tile-link {
    text-decoration: none;
    color: inherit;
}

.egl-arkse-tile {
    border: 1px solid #0ff;
    background: #111;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,255,255,0.3);
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.egl-arkse-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0,255,255,0.6);
}

.egl-arkse-tile h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #0ff;
}

.egl-arkse-tile p {
    margin: 4px 0;
    color: #aaa;
    font-size: 14px;
}

.egl-arkse-tile strong.status-online {
    color: #00FF00;
    text-shadow: 0 0 5px #00FF00;
}

.egl-arkse-tile strong.status-offline {
    color: #FF0000;
    text-shadow: 0 0 5px #FF0000;
}
