body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url('/assets/img/bc-main.webp'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.header-container {
    display: grid;
    grid-template-rows: auto auto;
    max-width: 980px;
    margin: auto;
}

.top-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 10px 20px;
    background: #010F18;
}

.logo img {
    width: 75px;
    height: 75px;
}

.auth-buttons {
    display: flex;
    gap: 5px;
}

.auth-buttons a {
    text-decoration: none;
}

.auth-buttons button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fdca0b 0%, #ffba00 50%, #f04e23 100%);
    text-decoration: none;
    font-weight: 700;
    color: white;
    width: 110px;
    height: 25px;
    text-shadow: 1px 1px 1px #000;
    text-decoration: none;
}

.register-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    text-decoration: none;
    font-weight: 700;
    color: white;
    width: 110px;
    height: 25px;
    text-shadow: 1px 1px 1px #000;
}

.social-icons {
    display: flex;
    gap: 1px;
    margin-left: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-bar {
    background: #001521;
    text-align: center;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 0px;
    margin-left: -26px;
}

.nav-bar ul li {
    display: inline;
}

.nav-bar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 1px 6px;
    font-size: 16px;
}

.nav-bar ul li a:hover {
    background: #00334D;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .header-container {
      max-width: 100%;
    }
  
    .top-header {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      text-align: center;
      justify-items: center;
    }
    .logo {
      margin-bottom: 10px;
    }
    .logo img {
      width: 75px;
      height: auto;
    }
    .auth-buttons {
      justify-content: center;
      margin-bottom: 10px;
    }
  
    .social-icons,
    .nav-bar {
      display: none;
    }
  
   
    .burger-menu {
      display: block;
      cursor: pointer;
      position: absolute;
      top: 110px;
      right: 40px;
      z-index: 2000;
    }
    .burger-menu span {
      display: block;
      width: 25px;
      height: 3px;
      margin: 4px 0;
      background: #fff;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .burger-menu.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  
    .nav-bar.active {
      display: block;
      top: 160px; 
      left: 0;
      width: 100%;
      background: #001521;
      text-align: center;
      z-index: 1500;
      margin-top: 10px;
      padding: 10px 0px;
    }
    .nav-bar.active ul {
      display: block;
      margin: 0;
      padding: 0;
    }
    .nav-bar.active ul li {
      display: block;
      margin: 10px 0;
    }
    .nav-bar.active ul li a {
      display: block;
      padding: 10px;
      font-size: 18px;
    }
  }
  
.banner-slider {
    position: relative;
    width: 980px;
    height: 300px;
    margin: 20px auto 0px;
    display: flex;
    background: #010F18;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.slides {
    width: 65%;
    height: 100%;
    position: relative;
}

/* 📌 Слайд */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url("/assets/img/baner-sport.webp");
background-size: cover;
background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("/assets/img/baner-promo.webp");
background-size: cover;
background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("/assets/img/baner-top.webp");
background-size: cover;
background-position: center;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.dots {
    position: absolute;
    bottom: 275px;
    left: 58%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.dots span.active {
    background: #ffcc00;
}

.banner-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.banner-content span {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffcc00;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ddd;
}

.action-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    text-shadow: 1px 1px 1px #000;
}

.action-btn:hover {
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    transform: scale(1.05);
}

.top-players-box {
    width: 35%;
    background: #001521;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-players-box span {
    text-align: center;
    font-size: 20px;
    color: #ffcc00;
    border-bottom: 2px solid rgba(255, 204, 0, 0.5);
}

.top-players-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 204, 0, 0.1);
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 16px;
}

.offer {
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
}

.player-score {
    font-weight: bold;
    color: #ffffff;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}
.official-site-btn {
    display: flex;
    justify-content: center;
    width: 90%;
    text-align: center;
    background: linear-gradient(to bottom, #fdca0b 0%, #ffba00 50%, #f04e23 100%);
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 10px 0px 10px 30px;
    text-shadow: 1px 1px 1px #000;
}

.official-site-btn:hover {
    background: linear-gradient(to bottom, #fdca0b 0%, #ffba00 50%, #f04e23 100%);
    transform: scale(1.05);
}

.dots {
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.dots span.active {
    background: #ffcc00;
}
@media screen and (max-width: 768px) {
    .banner-slider {
        width: 100%;
        height: auto;
        flex-direction: column;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        position: relative;
        margin: 10px auto;
    }

    .slides {
        width: 100%;
        height: 280px; 
        position: relative;
        overflow: hidden;
    }

    /* 📌 Слайд */
    .slide {
        position: absolute;
        width: 100%;
        height: 100%; 
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .slide.active {
        opacity: 1;
        position: absolute;
        z-index: 2;
    }

    .banner-content {
        max-width: 90%;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .action-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dots {
        position: relative;
        left: 193px;
        bottom: 360px;
        display: flex;
        justify-content: center;
        gap: 6px;
        z-index: 10000;
    }

    .dots span {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
    }

    .dots span.active {
        background: #ffcc00;
    }

    .top-players-box {
        width: 100%;
        max-width: 360px; 
        margin: 10px auto; 
        padding: 0px;
        border-radius: 8px;
        background: #001521;
        overflow: hidden; 
    }

    .top-players-box span {
        font-size: 18px;
        text-align: center;
        border-bottom: 2px solid rgba(255, 204, 0, 0.3);
    }

    .top-players-box ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .top-players-box li {
        font-size: 14px;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        background: rgba(255, 204, 0, 0.1);
        border-radius: 5px;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden; 
        text-overflow: ellipsis;
    }

    .player-name {
        font-weight: bold;
        color: #ffcc00;
        max-width: 70%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-score {
        font-weight: bold;
        color: #ffffff;
    }

    .official-site-btn {
        padding: 10px 0px 10px 35px;
    }
}

.slots-section {
    max-width: 980px;
    margin: 0px auto 20px;
    background: #010F18;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 10px 0px 10px 0px;
    overflow: hidden;
}

.slots-section span {
    color: #ffcc00;
    font-size: 22px;
    margin-bottom: 15px;
}

/* 📌 Грид слотов */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 0.1fr));
    gap: 10px;
    justify-content: center;
}

.slot {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    background: #000;
}

/* 📌 Картинка */
.slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: filter 0.3s ease-in-out;
}

.slot p {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffcc00;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slot:hover img {
    filter: brightness(50%);
}

.slot:hover .play-overlay {
    opacity: 1;
}

.play-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.play-overlay a::before {
    content: "";
    font-size: 20px;
    margin-right: 6px;
    color: #ffcc00;
}

.play-overlay a:hover {
    transform: scale(1.1);
}

.load-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 20px auto;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 1px #000;
}

.load-more-btn:hover {
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .slots-section {
        padding: 10px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px;
    }

    .slot {
        aspect-ratio: 1 / 1; 
    }

    .slot img {
        object-fit: contain; 
    }

    .slot p {
        font-size: 12px;
    }

    .play-overlay {
        font-size: 14px;
        padding: 6px 10px;
    }
}

.content-section {
    max-width: 980px;
    margin: 20px auto;
    background: #010F18;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
}

.content-section h2 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #ffcc00;
    text-align: left;
}

.content-section h3 {
    font-size: 20px;
    margin: 15px 0 8px;
    color: #ffcc00;
    text-align: left;
}

.content-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #ddd;
    text-align: left;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    text-align: left;
}

.content-section ul li {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.content-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .content-section {
        max-width: 100%;
        padding: 15px;
    }

    .content-section h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 14px;
    }

    .content-section .content-btn {
        font-size: 16px;
        padding: 10px 18px;
    }
}

.footer {
    background: #010F18;
    color: white;
    padding: 30px 0;
    font-size: 14px;
    width: 980px;
    margin: 0px auto;
}

.footer-container {

    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    flex-wrap: wrap;
}

.footer-column {
    width: 23%;
}

.footer-column h3 {
    color: #ffcc00;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

.footer-payments img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 10px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 8px;
}

.footer-bottom p {
    font-size: 12px;
    color: #bbb;
}

@media screen and (max-width: 768px) {
    .footer {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-payments {
        justify-content: center;
    }

    .footer-payments img {
        height: 28px;
    }

    .footer-logo img {
        height: 35px;
    }
}

figure {
    width: 100%;
    max-width: 980px;
    margin: 20px auto;
    background: linear-gradient(135deg, #010F18, #001521);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

/* 📌 Таблица */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

/* 📌 Заголовок таблицы */
thead th {
    background: linear-gradient(90deg, #ffcc00, #ff9000);
    color: #000;
    font-size: 18px;
    padding: 12px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

/* 📌 Строки таблицы */
tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease-in-out;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* 📌 Ячейки */
td {
    padding: 12px;
    font-size: 14px;
    color: #fff;
}

/* 📌 Левая колонка (иконки + заголовки) */
td:first-child {
    font-weight: bold;
    color: #ffcc00;
    width: 35%;
}

/* 📌 Ссылки */
td a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

td a:hover {
    text-decoration: underline;
}

/* 📌 Закругленные углы */
tbody tr:last-child td {
    border-radius: 0 0 10px 10px;
}

/* 📌 🔥 Адаптивность */
@media screen and (max-width: 768px) {
    td {
        font-size: 12px;
        padding: 10px;
    }

    td:first-child {
        width: 40%;
    }
}

blockquote {
    max-width: 980px;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, #010F18, #001521);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

/* 📌 Заголовок */
h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffcc00;
}

/* 📌 Блок отзывов */
figure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* 📌 Отзыв */
article {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

article:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

/* 📌 Текст отзыва */
article p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 6px;
}

/* 📌 Автор */
figcaption {
    font-size: 12px;
    color: #ffcc00;
    font-weight: bold;
}

aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

aside h3 {
    font-size: 20px;
    color: #ffcc00;
    margin-bottom: 10px;
}

input, textarea {
    padding: 10px;
    background: #001521;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
}

aside button {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

aside button a {
    text-decoration: none;
    color: white;
}

aside button:hover {
    background: linear-gradient(to bottom, #c6ff62 0%, #00c309 50%, #006017 100%);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    blockquote {
        width: 100%;
        padding: 15px;
    }

    figure {
        grid-template-columns: 1fr;
    }

    article {
        padding: 10px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}
