/* --- Explorer / поиск игрока --- */

.title {
    color: #e5e5e5;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

/* контейнер формы */
form {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* подпись */
form label {
    color: #ccc;
    font-size: 14px;
}

/* поле ввода */
form input[type="text"] {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 12px;
    color: #eaeaea;
    font-size: 16px;
    outline: none;
    transition: border 0.2s;
}


/* Отключаем стандартную заливку autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #2a2a2a inset !important; /* твой цвет фона */
    -webkit-text-fill-color: #eaeaea !important;                /* цвет текста */
    transition: background-color 9999s ease-in-out 0s;
}


/* Чтобы граница не менялась */
input:-webkit-autofill {
    border: 1px solid #444 !important;
}

/* Для Firefox */
input:autofill {
    background-color: #2a2a2a !important;
    color: #eaeaea !important;
}

input {
    caret-color: #eaeaea; /* или любой светлый */
}

/* кнопка */
form button {
    background: #2a2a2a;
    border: none;
    border-radius: 6px;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

form button:hover {
    background: #3e3e3e;
}

/* текст "результаты для игрока ..." */
p {
    color: #ddd;
    text-align: center;
    font-size: 16px;
}

p strong {
    color: #6ec1ff;
}

.match_card {
    max-width: 1200px;
    margin: 20px auto 0;
}

.card_top_section {
    height: 22px;
    display: flex;
    justify-content: flex-end;
    background: #4a4848;
    padding: 0px 10px;
}

.time_elapsed {
    font-size: 14px;
    line-height: 22px;
    font-family: Arial, sans-serif;
    font-weight: 900; /* Black weight */
}

.card_middle_section {
    display: flex;
    justify-content: space-between;
    height: 54px;
    background: #3a3939;
}

.card_middle_section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.map_info {
    justify-self: start;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 900; /* Black weight */
    text-shadow: 
        -1px -1px 0px #000,  
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000,
        -1px 2px 0px #000,
        1px 2px 0px #000,
        -1px 3px 0px #000,
        1px 3px 0px #000;
}

.mode_and_map_names {
    justify-self: flex-end;
}

.mode_name {
    font-size: 20px;
    line-height: 30px;
    margin-top: -4px;
}

.map_name {
    font-size: 14px;
}

.result {
    grid-column: 2;
    font-size: 22px;
    font-weight: bold;
    color: #00FC00;
    font-family: Arial, sans-serif;
    font-weight: 900; /* Black weight */
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.mode_icon_wrapper img {
    height: 44px;
    font-size: 0;
}


.card_bottom_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    background: #4a4848;
}

.card_bottom_section .team_a, .card_bottom_section .team_b {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 20px;
}

.brawler_icon_wrapper {
    position: relative;
    border: 4px solid #000;
    background: #000;
    font-size: 0;
    line-height: 0;
}

.player_brawler_icon {
    
}

.bedge_container {
    position: absolute;
    top: -4px;
    left: 0px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px;
    align-items: center;
}

.rank_icon {
    height: 26px;
    grid-column: 1;
}

.rank_stage {
    font-size: 21px;
    font-family: Verdana, sans-serif;
    font-weight: 900; /* Black weight */
    text-shadow: 
        -1px -1px 1px #000,  
        1px -1px 1px #000,
        -1px 1px 1px #000,
        1px 1px 1px #000,
        -1px 2px 1px #000,
        1px 2px 1px #000,
        -1px 3px 1px #000,
        1px 3px 1px #000;
    grid-column: 2;
}

.versus_text {
    font-size: 64px;
    font-weight: bold;
    color: #fff;
    font-family: 'Nougat';
    font-weight: normal;
    text-shadow: 
        -2px -2px 1px #000,  
        2px -2px 1px #000,
        -2px 2px 1px #000,
        2px 2px 1px #000,
        -2px 3px 1px #000,
        2px 3px 1px #000,
        -2px 4px 1px #000,
        2px 4px 1px #000;
}

.player_wrapper .player_tag {
    text-align: center;
    margin-top: 4px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 700; /* Black weight */
    text-shadow: 
        -1px -1px 0px #000,  
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000,
        -1px 2px 0px #000,
        1px 2px 0px #000,
        -1px 3px 0px #000,
        1px 3px 0px #000;
}