#main {
    display: flex;
    min-height: 100vh;
    margin-top: 120px;
}

.card-container {
    background-color: rgb(30,30,30) !important;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    border-radius: 5px;
}

.status-icon {
    position: absolute;
    bottom : -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(0, 139, 219);
    border: 2px solid rgb(30,30,30);
}

.status-icon-green {
    background-color: rgb(15, 211, 80) !important;
}

.status-icon-orange {
    background-color: #ff9500;
}

.image-container {
    position: relative;
    display: table;
    margin: 0 auto;

}

.text-secondary {
    color: rgb(180, 180, 180) !important;
}
.friend-card {
    position: relative;
    width: 90px;
    height: fit-content;
    cursor: pointer;
}

.friend-tooltip {
    position: fixed;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    min-width: 250px;
    max-width: 300px;
    z-index: 10000;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.friend-tooltip::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: -1;
}

.tooltip-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tooltip-game-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 12px;
    background: #333;
}

.tooltip-game-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.tooltip-game-info p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.tooltip-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tooltip-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.tooltip-btn-primary {
    background: #007bff;
    color: white;
}

.tooltip-btn-primary:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.tooltip-btn-secondary {
    background: #666;
    color: white;
}

.tooltip-btn-secondary:hover {
    background: #555;
    color: white;
    text-decoration: none;
}

.tooltip-btn-disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.image-container {
    position: relative;
    display: inline-block;
}

.client-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #2a2a2a;
    border: 2px solid #333;
    height: 140px;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    border-color: #0078d4;
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 24px 8px 8px;
    color: white;
    text-align: center;
}

.client-card-latest {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-overlay {
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .desktop-app-banner {
        display: none !important;
    }
}