﻿
.seed-overlay {
    position: absolute;
    padding: 0 3px;
    top: 5px;
    left: 5px;
    display: inline-block;
    background-color: #000000b3;
    color: #fff;
    border-radius: 1px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    z-index: 10;
}

.duration-overlay {
    position: absolute;
    padding: 0 3px;
    bottom: 8px;
    right: 8px;
    text-align: right;
    display: inline-block;
    background-color: #000000b3;
    color: #fff;
    border-radius: 1px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    z-index: 10;
}

.thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
}

    .thumbnail img {
        width: 100%;
        height: auto;
        display: block;
        z-index: 100;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .thumbnail .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 4rem;
        opacity: .4;
        transition: opacity 0.3s, transform 0.3s;
    }

    .thumbnail:hover .play-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

.imagen-verificable {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}



.steam-avatar-mini {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #333;
}

.player-name {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 4px;
    display: block;
    font-size: 11px;
    padding: 1px 4px !important;
}

.btn-link {
    color: #3498db;
    text-decoration: none;
}

    .btn-link:hover {
        color: #2980b9;
        text-decoration: none;
    }

.container {
    padding: 20px;
}

/* PLAYER STATUS  */

.player-status {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.status-win {
    background-color: #2ecc71;
}

.status-loss {
    background-color: #e74c3c;
}

.player-container {
    position: relative;
    display: inline-block;
    padding: 1px;
    border-radius: 4px;
    background: linear-gradient(45deg, rgba(0, 195, 255, 0.1), rgba(0, 255, 255, 0.1));
    box-shadow: 0 0 5px rgba(0, 195, 255, 0.2);
    border: 1px solid rgba(0, 195, 255, 0.3);
    text-align: center;
    margin: 0 auto;
}
.row.text-center {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
}

    .player-container:hover {
        box-shadow: 0 0 8px rgba(0, 195, 255, 0.4);
        border: 1px solid rgba(0, 195, 255, 0.5);
        transition: all 0.3s ease;
    }

.col-xs-3 {
    margin-bottom: 20px;
    padding: 0 2px;
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
}

/* TEAM COLORS */

.bg-team-alpha {
    background: rgb(72, 96, 254, .95);
    color: #fff;
}

.bg-team-bravo {
    color: #fff;
    background: rgb(251, 73, 73, .95);
}

.bg-team-charlie {
    color: #fff;
    background: rgb(255, 171, 72, .95);
}

.bg-team-delta {
    color: #000;
    background: rgb(71, 236, 255, .95);
}

.bg-team-echo {
    color: #000;
    background: rgb(255, 109, 249, .95);
}

.bg-team-foxtrot {
    color: #000;
    background: rgb(139, 254, 111, .95);
}

.bg-team-golf {
    color: #fff;
    background: rgb(151, 72, 252, .95);
}

.bg-team-hotel {
    color: #fff;
    background: rgb(65, 66, 61, .95);
}

/* MATCH INFO */

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 8px;
}

.match-date {
    text-align: left;
}

.match-type {
    text-align: right;
}

.row.text-center {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    line-height: 1.2;
}

.gallery-item {
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        background-color: rgba(0, 195, 255, 0.1);
        box-shadow: 0 0 10px rgba(0, 195, 255, 0.1);
    }

