/*default start*/
body {
    font-family: 'Play';
    text-rendering: optimizeLegibility;
    background-color: rgb(34, 168, 203);
}

#background-сanvas {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: blur(150px);
}

#hamburger {
    background-color: rgb(62, 71, 95);
    color: #FFFFFF;
}

#hamburger:hover, #hamburger:active {
    background-color: rgb(62, 71, 95);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.dropdown-menu {
    --bs-dropdown-bg: #3e475f;
}
.dropdown-item {
    --bs-dropdown-link-color: #FFFFFF;
    --bs-dropdown-link-active-bg: rgba(31, 34, 44, 0.5);
    --bs-dropdown-link-active-color: #FFFFFF;
    --bs-dropdown-link-hover-bg: #1f222c;
    --bs-dropdown-link-hover-color: #FFFFFF;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color) !important;
    background-color: var(--bs-dropdown-link-hover-bg) !important;
}

.dropdown-menu a {
    text-decoration: none;
    position: relative;
    color: #00ffe7;
    font-size: 1em;
}

.dropdown-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::after {
    width: 100%;
}
/*default end*/


.form-control {
    background-color: #2e2e40;
    color: #fff;
    border: none;
}
.form-control:focus {
    background-color: #2e2e40;
    color: #fff;
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.form-control::placeholder {
    color: #bbb;
    opacity: 1;
}
#error {
    display: none;
}
.game {
    background: #2e2e40;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.game img {
    border-radius: 4px;
}
.text-muted {
    color: #aaa !important;
}
#filters {
    display: none;
}

.zbir {
    display: block;
    margin: 20px auto;
    width: fit-content;
    filter: drop-shadow(0px 0px 2px #00ffe7);
}

.zbir-text {
    display: block;
    margin: 20px auto;
    width: fit-content;
    color: #00ffe7;
    max-width: 80%;
    font-size: 1em;
}

.zbir-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    text-align: center;
}

.zbir-text {
    margin-bottom: 12px;
}

.modal-fullscreen .modal-content {
    background-color: #000;
    color: white;
    text-align: center;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    cursor: pointer;
}

@keyframes loadingBar {
    0%   { width: 0%; }
    10%  { width: 20%; }
    20%  { width: 25%; }
    30%  { width: 35%; }
    40%  { width: 45%; }
    50%  { width: 50%; }
    60%  { width: 55%; }
    70%  { width: 60%; }
    80%  { width: 80%; }
    90%  { width: 85%; }
    100% { width: 100%; }
}
