body {
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
    color: #BFBFBF;
}
.profile-avatar {
    width: 100px;  /* Уменьшаем размер аватара */
    height: 100px;  /* Уменьшаем размер аватара */
    object-fit: cover;
}
.custom-navbar {
    background-color: #1C1C1C !important;
}

.navbar-logo {
    height: 40px;
}

.jumbotron {
    background-color: #0A0A0A;
    color: #BFBFBF;
    border-radius: 10px;
    padding: 20px;
}
.container-fluid {
    border: 0px solid red;
}

.btn-custom {
    background-color: #FFAB40; /* Цвет фона кнопки */
    color: #0A0A0A; /* Цвет текста */
    border: none; /* Убрать границу */
    padding: 10px 20px; /* Внутренние отступы */
    font-size: 16px; /* Размер шрифта */
    border-radius: 5px; /* Закругленные углы */
    transition: background-color 0.3s ease; /* Плавный переход цвета фона */
}

.btn-custom:hover {
    background-color: #cf8d36; /* Цвет фона при наведении */
    color: #0A0A0A; /* Цвет текста при наведении */
}

.btn-custom:focus, .btn-custom:active {
    outline: none; /* Убрать обводку */
    box-shadow: 0 0 5px #cf8d36; /* Тень при фокусе */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    color: #FFAB40;
    animation: glow 1.5s infinite alternate;
    margin-bottom: 1em;
}

nav .navbar-nav .nav-link {
    color: #FFAB40 !important;
    font-family: 'Fira Sans', sans-serif;
    margin: 0 1em;
    transition: color 0.3s;
}

nav .navbar-nav .nav-link:hover {
    color: #BFBFBF !important;
}

nav .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #FFAB40;
}

nav .navbar-brand:hover {
    color: #BFBFBF;
}

.dropdown-menu .dropdown-item {
    color: #BFBFBF !important;
    background-color: #0A0A0A;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #1C1C1C;
}

h2 {
    font-family: 'Fira Sans', sans-serif;
    color: #FFAB40;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

.card-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.25rem;
    color: #FFAB40;
    margin: 0;
}

.card-body {
    font-family: 'Fira Sans', sans-serif;
    color: #BFBFBF;
}

.content-background {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 20px;
}

.custom-button {
    background-color: #FFAB40;
    color: #0A0A0A;
    font-family: 'Fira Sans', sans-serif;
    transition: background-color 0.3s;
}

.custom-button:hover {
    background-color: #E5983A;
}

.review-block-custom {
    background-color: #1C1C1C;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.search-block-custom {
    background-color: #1C1C1C;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.movies-block-custom {
    background-color: #1C1C1C;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
}

#movies-list .card {
    font-size: 14px; /* Уменьшенный размер текста */
    width: 100%;
}

.movie-title {
    font-size: 14px; /* Размер текста названия фильма */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-year {
    font-size: 12px; /* Размер текста года фильма */
}

/* Обводка для топовых пользователей */
.border-gold {
    border: 5px solid gold !important;
}

.border-silver {
    border: 5px solid silver !important;
}

.border-bronze {
    border: 5px solid #cd7f32 !important;
}

/* Обводка для остальных пользователей */
.border-light {
    border: 2px solid white !important;
    opacity: 0.7;
}

/* Для медалей */
.card-title {
    font-weight: bold;
}

.card-title span {
    margin-right: 10px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 0px #FFAB40, 0 0 10px #FFAB40, 0 0 30px #FFAB40, 0 0 30px #FFAB40;
    }
    to {
        text-shadow: 0 0 10px #FFAB40, 0 0 20px #FFAB40, 0 0 40px #FFAB40, 0 0 40px #FFAB40;
    }
}
