* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'inter', sans-serif;
    background: #121315;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ХЕДЕР */
header {
    background: #353535;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

/* НАВИГАЦИЯ */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* ИКОНКИ */
.icons {
    display: flex;
    align-items: center;
}

.search-icon a{
    font-size: 20px;
    margin-right: 20px;
    text-decoration: none;
}

/* БУРГЕР-МЕНЮ */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding-top: 50px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    color: white;
    display: block;
    padding: 15px;
}

/* БЛОК ПРОМО */
.promo {
    background: url('https://bogatyr.club/uploads/posts/2021-11/thumbs/1636951536_5-bogatyr-club-p-zadnii-fon-chernii-5.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px 0;
    position: relative;
    margin-top: 80px;
}

.promo-content {
    display: flex;
    align-items: center;
}

.promo-logo {
    height: 100px;
    border-radius: 10px;
    margin-right: 20px;
}

.promo-text h1 {
    font-size: 32px;
    font-weight: bold;
}

.promo-text p {
    font-size: 18px;
    margin: 5px 0;
}

.promo-text .small-text {
    font-size: 14px;
    color: #ccc;
}

.play-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.play-btn a{
    text-decoration: none;
    color: #fff;
}

.play-btn:hover {
    background: #218838;
}

/* ОЦЕНКА */
.rating {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

.content img{
    width: 100%;
    border-radius: 10px;
    margin: 10px;
}

.scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffcc00;
    color: black;
    padding: 18px 22px;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    background: #ffaa00;
}

footer {
    background: #353535;
    color: white;
    padding: 30px 10px;
    text-align: center;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-logo {
    text-align: left;
    max-width: 300px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.column {
    text-align: left;
}

.column h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 5px;
}

.column ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.column ul li a:hover {
    color: #ffcc00;
}

/* Логотипи провайдерів */
.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.footer-logos img {
    max-height: 40px;
}

/* Попередження */
.footer-warning {
    font-size: 12px;
    color: #ffcc00;
    padding: 10px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

/* Нижня частина */
.footer-bottom {
    padding-top: 10px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #ffcc00;
}

.content {
    background: #0c0c0c;
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.content {
    margin-bottom: 40px;
    padding: 20px;
    background: #656565;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}


.content h2 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: 5px solid #5f0000;
    padding-left: 10px;
    margin: 10px;
}

/* Хлібні крихти (Breadcrumb) */
.breadcrumb {
    font-size: 14px;
    color: #000000;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #ff0000;
    text-decoration: none;
}

/* Основний текст */
.intro p,
.bonus-info p,
.casino-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Блок із банером */
.bonus-banner img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Таблиця характеристик */
.casino-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #1a1a1a;
}

.casino-table th, 
.casino-table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

.casino-table th {
    background: #222;
    color: #ffcc00;
}

.casino-table td {
    font-size: 16px;
}

.reviews {
    margin: 10px;
    background: #1a1a1a;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.reviews h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.review {
    background: #222;
    padding: 15px;
    margin: 10px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
    text-align: left;
}

.review strong {
    color: #ffcc00;
}

.review p {
    font-size: 16px;
    color: white;
    margin: 5px 0;
}

.stars {
    font-size: 18px;
    color: #ffcc00;
}

.leave-review {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.leave-review:hover {
    background: #0056b3;
}

/* Секция FAQ */
.faq {
    background: #222;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 30px;
}

.faq h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.faq-item {
    background: #333;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #ffcc00;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #444;
    font-size: 14px;
}

.faq-question.active + .faq-answer {
    display: block;
}

/* Секция тегов */
.tags {
    background: #0c0c0c;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.tags h2 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tag-list span {
    background: #ffcc00;
    color: black;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.container-o{
    flex-direction: column;
    margin: 15px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        text-align: center;
        justify-content: center;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu li {
        margin: 20px 0;
    }

    .mobile-menu a {
        font-size: 22px;
        color: white;
        text-decoration: none;
    }

    /* БЛОК ПРОМО */
    .promo {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 40px 10px;
    }

    .promo-content {
        flex-direction: column;
    }

    .promo-logo {
        margin: 0 auto 20px;
        height: 80px;
    }

    .promo-text h1 {
        font-size: 24px;
    }

    .promo-text p {
        font-size: 16px;
    }

    .play-btn {
        width: 100%;
        max-width: 200px;
        font-size: 16px;
    }

    /* ОЦЕНКА */
    .rating {
        position: static;
        margin-top: 20px;
        font-size: 16px;
    }
    .close-menu {
        position: absolute;
        top: 40px;
        right: 40px;
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
}

/* Для телефонов */
@media (max-width: 768px) {
    .container {
        align-items: center;
        text-align: center;
    }

    .review {
        max-width: 90%;
    }

    .tag-list {
        flex-direction: column;
    }

    .tag-list span {
        width: 80%;
        text-align: center;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .icons {
        margin-top: 10px;
    }

    .search-icon {
        display: none;
    }

    /* Промо */
    .promo {
        padding: 45px 10px;
    }

    .promo-logo {
        height: 60px;
    }

    .promo-text h1 {
        font-size: 22px;
    }

    .promo-text p {
        font-size: 14px;
    }

    .play-btn {
        padding: 8px 15px;
    }

    .rating {
        font-size: 14px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        text-align: center;
    }

    .footer-logos {
        flex-wrap: wrap;
    }
    .casino-table th,
    .casino-table td {
        font-size: 14px;
        padding: 8px;
    }
}

