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

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

.logo {
    display: flex;
    align-items: 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: #00c3ff;
}

/* Бургер-меню */
.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;
    justify-content: space-between;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 50px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.casino-logo {
    position: relative;
    width: 100px;
}

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

.rating {
    position: absolute;
    top: -5px;
    right: -5px;
    background: gold;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 50px;
}

.casino-info {
    flex: 1;
    padding-left: 20px;
}

h2 {
    font-size: 24px;
    margin: 0;
}

.bonus {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.description {
    font-size: 14px;
    color: #666;
}

.casino-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-button {
    background: #33cc33;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.play-button:hover {
    background: #28a428;
}

.terms {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-decoration: none;
}

.terms:hover {
    text-decoration: underline;
}

.casino-banner {
    position: relative;
    background: url('https://fanday.net/img/casinos/777casino2.webp') center/cover no-repeat;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

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


h1, h2 {
    color: #222;
    margin: 10px;
}
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #5f5f5f;
    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;
}
section{
    transition: transform 0.2s ease-in-out;
}

section:hover {
    transform: translateY(-5px);
}

/* Заголовки в секциях */
section h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: 5px solid #ff6600;
    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: #ff6600;
    color: white;
    text-align: left;
    padding: 10px;
    font-size: 16px;
}

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

/* Чередующиеся строки для лучшей читаемости */
table tr:nth-child(even) {
    background: #f8f8f8;
}

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

.reviews-container h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.review {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.review:last-child {
    border-bottom: none;
}

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

.review-text {
    margin: 5px 0;
    color: #ffffff;
}

.review-rating {
    color: #f5b301;
}

.leave-review {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background: #28a745;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.leave-review:hover {
    background: #218838;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-right: 20px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #28a745;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.footer {
    background: #111;
    color: #bbb;
    padding: 30px 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    border-radius: 0px;
    max-width: 120px;
    margin-bottom: 10px;
}

.footer-logo p {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-column {
    margin: 10px 20px;
}

.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-disclaimer {
    margin-top: 20px;
    max-width: 600px;
    font-size: 13px;
    line-height: 1.5;
}

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

.tags-container {
    max-width: 800px;
    margin: 20px auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
}

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

.tags-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.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;
}

.tags-list a:hover {
    background: #28a745;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .casino-card {
        flex-direction: column;
        text-align: center;
        margin: 50px 20px;
    }

    .casino-info {
        padding: 15px 0;
    }
    main {
        padding: 15px;
        margin: 20px;
    }

    section {
        padding: 15px;
    }

    table th, table td {
        font-size: 10px;
        padding: 3px;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo p {
        max-width: 100%;
    }

    .footer-disclaimer {
        max-width: 100%;
    }
    .tags-container {
        padding: 15px;
    }

    .tags-list {
        gap: 8px;
    }

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