/* custom.css */
.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.video-bg {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.streams__content {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: rgba(30, 24, 17, 0.8);
    border-radius: 1rem;
    border: 2px solid #ffeba5;
    box-shadow: 0 0 1rem rgba(255, 235, 165, 0.3);
    max-width: 40rem;
    margin: 0 auto;
	margin-top: 10rem; /* Это основное изменение */
}

.streams__title {
    font-family: var(--font-0);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

.streams__subtitle {
    font-family: var(--font-1);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fcc55b;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.streams__desc {
    font-family: var(--font-2);
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.streams__btn {
    --btn-scale: 1;
    width: 100%;
    max-width: 15rem;
    margin-top: 1rem;
}

.server-status {
    min-height: 1rem;
    padding: 0.625rem 2rem;
    left: 0;
    top: 0;
    right: 0;
    z-index: 5;
    background-color: transparent;
    background-image: url(../images/bg.png);
    background-size: max(100%, 154.5rem) 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-family: var(--font-2);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.1;
    position: absolute;
}

.server-status__content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.server-status__info {
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
}

.server-status__date {
    color: #ffeba5;
    font-weight: bold;
}

.server-status__rates {
    font-weight: bold;
    color: #fcc55b;
}

.server-status__version {
    color: #e8d1a6;
}

.server-status__progress-container {
    width: 120px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.server-status__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fcc55b, #f0af2c);
    width: 0%;
    transition: width 1s ease;
    border-radius: 3px;
}

.server-status__status {
    font-weight: bold;
    white-space: nowrap;
}

.server-status__status--online {
    color: #4caf50;
}

.server-status__status--offline {
    color: #f44336;
}

/* Надпись о бонусе */
.server-status__bonus {
    font-weight: bold;
    color: #ffeb3b;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.server-status__bonus:hover {
    color: #ffc107;
}


.footer__bnrs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(137, 128, 121, 0.3);
}

.footer__bnrs a {
    display: inline-block;
    line-height: 0;
}

.footer__bnrs img {
    display: block;
    max-width: 88px;
    height: auto;
    transition: none;
    filter: none;
    opacity: 0.9;
}

.footer__bnrs img:hover {
    opacity: 1;
}


/* Смещаем всю секцию news вправо, чтобы она была рядом с меню */
.news-content-wrapper {
    position: relative;
    left: calc(var(--fpnav-width) + 4rem); /* Смещаем на ширину меню + отступ */
    width: calc(100% - var(--fpnav-width) - 1.875rem); /* Ограничиваем ширину */
}

/* Убираем отступ слева внутри контейнера */
.news .fp__box {
    padding-left: 0 !important;
}

/* Ограничиваем ширину текста */
.post__desc {
    max-width: 30rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Уменьшаем заголовок */
.post__title {
    font-size: 2rem !important;
    line-height: 1.1;
}

/* Уменьшаем кнопку */
.post__btn {
    --btn-scale: 0.8;
    font-size: 1rem;
    min-width: 10rem;
    padding: 0.5rem 1rem;
}