body {
    margin: 0;
    font-family: 'inter', sans-serif;
    background-color: #000000;
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #393939;
    padding: 15px 20px;
    color: white;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.casino-banner h1 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    max-width: 80%;
    text-align: center;
}

.logo img {
    border-radius: 0px;
    width: 85px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

span{
    font-size: 30px;
    color: #ffffff;
}

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

/* Бургер-меню */
.burger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.4s;
}

/* Мобильное меню */
.mobile-menu {
    z-index: 1;
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.mobile-menu a:hover {
    color: #00c3ff;
}

/* Открытое меню */
.mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

/* Анимация бургер-меню */
.burger-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.casino-card {
    display: flex;
    align-items: center;
    background: #f8f9fc;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.casino-rank {
    background: #ffbe00;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
}

.casino-logo img {
    max-width: 80px;
    border-radius: 5px;
}

.casino-info {
    flex-grow: 1;
    padding: 0 15px;
}

.casino-info h3 {
    margin: 0;
    font-size: 18px;
}

.casino-rating {
    color: #28a745;
    font-size: 16px;
    margin-top: 5px;
}

.rating-score {
    font-weight: bold;
    margin-left: 5px;
    color: #000;
}

.casino-bonus {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.casino-benefits {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #333;
}

.casino-benefits li {
    margin: 3px 0;
}

.casino-action {
    text-align: center;
}

.bonus-button {
    display: block;
    background: #03930e;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.bonus-button:hover {
    background: #0056b3;
}

.read-review {
    display: block;
    color: #000000;
    font-size: 14px;
    margin-top: 5px;
    text-decoration: none;
}

.casino-banner {
    position: relative;
    background: url('https://asset.montecarlosbm.com/styles/hero_desktop_wide_responsive_2x_webp/s3/media/orphea/casino_monte_carlo_1900x990_3__0.jpg.webp?itok=-hsRiXaZ') center/cover no-repeat;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.info-section {
    background: #dad9d9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.info-section th, .info-section td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
}

.info-section th {
    background: #444;
    color: #ffbe00;
}

.bonus {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
}

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

.bonus ul li {
    padding: 5px 0;
    color: #000000;
}

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

/* Стили для section */
main section {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

section h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: 5px solid #000000;
    padding-left: 10px;
}

/* Общий стиль таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Заголовки таблицы */
table th {
    background: #000000;
    color: white;
    text-align: left;
    padding: 10px;
    font-size: 16px;
}

/* Ячейки таблицы */
table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
}


.faq-container {
    max-width: 800px;
    margin: 40px auto;
    background: #000000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question {
    background: #3b6087;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #222;
    color: #ddd;
}

.faq-question span {
    font-size: 20px;
    font-weight: bold;
}

.footer {
    background: #000;
    color: #bbb;
    padding: 30px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    margin: 10px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

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

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

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

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.reviews-container {
    max-width: 800px;
    margin: 40px auto;
    background: #252525;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review {
    background: #333;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: left;
}

.review-author {
    font-weight: bold;
    color: #ffbe00;
}

.review-text {
    color: #ddd;
    margin-top: 5px;
}

.review-rating {
    color: #ffbe00;
    font-size: 18px;
    margin-top: 5px;
}

.leave-review {
    display: block;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

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

/* === Блок тегов === */
.tags-container {
    max-width: 800px;
    margin: 40px auto;
    background: #252525;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.tags-list a {
    display: inline-block;
    background: #333;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease-in-out;
}

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

.tags-list a:hover {
    background: #1b1758;
}


@media (max-width: 768px) {
    .casino-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .casino-rank {
        margin-bottom: 5px;
    }

    .casino-logo img {
        max-width: 60px;
    }

    .casino-info {
        padding: 10px 0;
    }

    .casino-action {
        width: 100%;
        text-align: center;
    }

    .bonus-button {
        width: 100%;
    }
    .faq-container {
        padding: 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .nav-links {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .reviews-container, .tags-container {
        padding: 15px;
    }

    .tags-list {
        gap: 8px;
    }

    .tags-list a {
        font-size: 12px;
        padding: 6px 12px;
    }
}