* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #4e1717;
    color: #fff;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline-block;
    margin-left: 30px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #ccc;
}

.hero-section {
    background: url('/images/main-hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.options-section {
    background-color: #550f0f;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.options-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 90px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
    font-weight: 600;
}

.tab-button.active {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

.tab-button:hover:not(.active) {
    color: #fff;
}

.option-item {
    background-color: #550f0f;
    border-radius: 0;
    margin-bottom: 0;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-item:first-of-type {
    border-top: none;
}
.option-item:last-of-type {
    border-bottom: none;
}

.item-number {
    font-size: 36px;
    font-weight: 600;
    margin-right: 40px;
    color: #fff;
    padding-left: 20px;
}

.item-details {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 20px;
}

.brand-logo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin-right: 30px;
    background-color: #7a3131;
    border-radius: 8px;
    padding: 10px 20px;
}

.item-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.item-details p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.item-rating {
    text-align: center;
    margin-right: 40px;
    min-width: 150px;
}

.item-rating .score {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.item-rating .stars {
    color: #FFD700;
    font-size: 22px;
    letter-spacing: 2px;
    display: block;
    margin: 5px 0 8px;
}

.item-rating .reviews {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.item-action {
    padding-right: 20px;
}

.item-action .btn-primary {
    background-color: #17a2b8;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.item-action .btn-primary:hover {
    background-color: #138496;
}

.details-section {
    background-color: #550f0f;
    padding: 40px 0 20px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.details-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.details-list li {
    margin-bottom: 25px;
}

.details-list li h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.details-list li p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer {
    background-color: #210d0d;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    padding: 0 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin: 0 15px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ccc;
}

.disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.compliance-logo {
    height: 45px;
    width: auto;
    filter: grayscale(100%) brightness(250%);
    opacity: 0.8;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.page-content-section {
    background-color: #210d0d;
    padding: 60px 0;
    color: #fff;
    min-height: calc(100vh - 120px - 200px);
}

.content-box {
    background-color: #311313;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin-bottom: 30px;
}
.bullet-list li span {
    margin-right: 15px;
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
}

.checkmark-list li {
    padding-left: 0;
}
.checkmark-list li::before {
    content: "\2713";
    color: #17a2b8;
    font-size: 20px;
    margin-right: 10px;
    line-height: 1;
    font-weight: bold;
}
.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.page-content-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-content-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.88);
}

.page-content-section strong {
    color: #fff;
}

.page-content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-content-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.88);
}

.page-content-section hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.bullet-list li .icon-sport {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%2317a2b8"><path d="M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-192 0c0 44.2-35.8 80-80 80s-80-35.8-80-80 35.8-80 80-80 80 35.8 80 80zm96-96c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM128 352c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm208 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM416 160c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32z"/></svg>');
}
.bullet-list li .icon-casino {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%2317a2b8"><path d="M544 0H32C14.3 0 0 14.3 0 32v448c0 17.7 14.3 32 32 32h512c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm-32 64v32H64V64h448zm0 64v64H64v-64h448zm0 96v64H64v-64h448zm0 96v64H64v-64h448zm0 96v32H64v-32h448z"/></svg>');
}
.bullet-list li .icon-promo {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%2317a2b8"><path d="M487.971 189.967L436.78 138.776c-3.13-3.129-8.196-3.13-11.325 0l-105.02 105.02-38.503-38.503c-3.129-3.129-8.196-3.13-11.325 0L144 290.776l-38.503-38.503c-3.129-3.129-8.196-3.13-11.325 0L32 340.776l-11.325 11.325c-3.13 3.129-3.13 8.196 0 11.325l51.191 51.191c3.129 3.129 8.196 3.129 11.325 0L112 374.776l38.503 38.503c3.129 3.129 8.196 3.129 11.325 0L240 318.776l38.503 38.503c3.129 3.129 8.196 3.129 11.325 0L424 246.776l51.191 51.191c3.13 3.129 8.196 3.129 11.325 0l51.191-51.191c3.129-3.129 3.129-8.196 0-11.325z"/></svg>');
}
.bullet-list li .icon-secure {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%2317a2b8"><path d="M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"/></svg>');
}
.bullet-list li .icon-mobile {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%2317a2b8"><path d="M304 0H80C35.82 0 0 35.82 0 80v352c0 44.18 35.82 80 80 80h224c44.18 0 80-35.82 80-80V80c0-44.18-35.82-80-80-80zM224 480c0 17.67-14.33 32-32 32s-32-14.33-32-32V64c0-17.67 14.33-32 32-32s32 14.33 32 32v416z"/></svg>');
}


.bullet-list li span {
    margin-right: 15px;
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
}

.contact-form-container {
    max-width: 600px;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 30px 40px;
}

.contact-title {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #7a3131;
    border-radius: 5px;
    background-color: #4a1919;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #17a2b8;
    background-color: #5a2222;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .option-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .item-number {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #7a3131;
        border-radius: 8px;
        font-size: 28px;
        margin-bottom: 20px;
        margin-right: 0;
        padding-left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .item-details {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .brand-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .item-rating {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .item-action {
        width: 100%;
        padding-right: 0;
    }
    .item-action .btn-primary {
        width: 80%;
        max-width: 300px;
    }

    .content-box {
        padding: 25px;
    }
    .page-title {
        font-size: 28px;
    }
    .page-content-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .main-nav ul {
        margin-top: 10px;
    }
    .main-nav ul li {
        margin: 0 10px;
    }
    .hero-section h1 {
        font-size: 36px;
    }
    .hero-section p {
        font-size: 16px;
    }
    .options-tabs {
        flex-wrap: wrap;
        width: 100%;
        border-bottom: none;
    }
    .tab-button {
        flex-basis: 50%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    .tab-button.active {
        border-bottom: 2px solid #fff;
    }
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .footer-nav ul li {
        margin-bottom: 10px;
    }
    .contact-form-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 28px;
    }
    .hero-section p {
        font-size: 14px;
    }
    .item-number {
        font-size: 24px;
    }
    .item-rating .score {
        font-size: 28px;
    }
    .item-action .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    .brand-logo {
        width: 120px;
        height: 60px;
    }
    .content-box {
        padding: 15px;
    }
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-content-section h2 {
        font-size: 18px;
        margin-top: 25px;
    }
    .page-content-section h3 {
        font-size: 16px;
        margin-top: 20px;
    }
    .page-content-section p,
    .page-content-section ul li {
        font-size: 14px;
    }
    .form-group label {
        font-size: 14px;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    .btn-submit {
        font-size: 16px;
        padding: 12px 15px;
    }
}


.hero-section.hero-main-page {
    background: url('/images/main-hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.hero-section.hero-main-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-section.hero-main-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section.hero-main-page .hero-highlight {
    color: #a4e400;
}

.hero-section.hero-main-page .hero-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.filter-btn.active {
    background-color: #a4e400;
    border-color: #a4e400;
    color: #210d0d;
    font-weight: bold;
}

.filter-btn .icon-card {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23ffffff"><path d="M573.4 122.9l-48-96C522.6 15.6 507.5 0 490.7 0H85.3C68.5 0 53.4 15.6 47.9 26.9l-48 96c-5.9 11.8-6.1 25.8-.6 37.8L21.3 224h533.4l23.9-63.3c5.5-12-.7-26-6.2-37.8zM0 256c0 17.7 14.3 32 32 32h512c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM576 320H0v128c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V320zm-160 80c0 8.8-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16v-32c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32z"/></svg>');
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
}
.filter-btn.active .icon-card,
.filter-btn.active .icon-roulette,
.filter-btn.active .icon-star {
    filter: invert(100%);
}
.filter-btn .icon-roulette {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23ffffff"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 464c-11.2 0-22.3-.8-33.1-2.4l-31.5-24c-11.2-8.5-16.7-22-14.7-35.3l12.4-78.5c1.1-6.7-1.1-13.6-5.8-17.9l-22.4-20.9c-4.4-4.1-6.6-9.6-6.6-15.1l.6-26.4c.5-22.3 22.3-38.3 44.5-35.9l26.4 2.8c6.7.7 13.6-1.1 17.9-5.8l20.9-22.4c4.1-4.4 9.6-6.6 15.1-6.6l26.4.6c22.3.5 38.3 22.3 35.9 44.5l-2.8 26.4c-.7 6.7 1.1 13.6 5.8 17.9l22.4 20.9c4.4 4.1 6.6 9.6 6.6 15.1l-.6 26.4c-.5 22.3-22.3 38.3-44.5 35.9l-26.4-2.8c-6.7-.7-13.6 1.1-17.9 5.8l-20.9 22.4c-4.1 4.4-9.6 6.6-15.1 6.6l-26.4-.6c-22.3-.5-38.3-22.3-35.9-44.5l2.8-26.4c.7-6.7-1.1-13.6-5.8-17.9l-22.4-20.9c-4.4-4.1-9.6-6.6-15.1-6.6l-26.4.6c-22.3.5-38.3 22.3-35.9 44.5l2.8 26.4c.7 6.7-1.1 13.6-5.8 17.9l-22.4 20.9c-4.4 4.1-6.6 9.6-6.6 15.1l.6 26.4c.5 22.3 22.3 38.3 44.5 35.9l26.4-2.8c6.7-.7 13.6 1.1 17.9 5.8l20.9 22.4c4.1 4.4 9.6 6.6 15.1 6.6l26.4-.6c22.3-.5 38.3-22.3 35.9-44.5z"/></svg>');
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
}
.filter-btn .icon-star {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23ffffff"><path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 34.2-17.7 54.4l105.7 103-25 145.5c-4.5 26.2 23.2 46.5 46.4 34.6L288 439.6l129.2 68.3c23.2 12.2 50.9-8.1 46.4-34.6l-25-145.5 105.7-103c19-20.2 8.5-50.6-17.7-54.4L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"/></svg>');
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
}

.casino-wrapper {
    background: url('/images/casino-background.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
}

.casino-table-section {
    background-color: #210d0d;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
    padding-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.casino-table-section .container {
    padding-top: 20px;
}

.table-tabs {
    display: flex;
    justify-content: space-between;
    background-color: #311313;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.table-tabs::-webkit-scrollbar {
    display: none;
}


.table-tabs .tab-btn {
    background: none;
    border: none;
    color: inherit;
    padding: 0 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.table-tabs .tab-btn.active {
    color: #fff;
}


.casino-list {
    padding: 0;
}

.casino-item {
    background-color: #3f1919;
    margin-bottom: 1px;
    position: relative;
}

.casino-item:last-child {
    margin-bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.casino-item:hover {
    background-color: #4a2121;
}

.item-content {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-item:last-child .item-content {
    border-bottom: none;
}


.item-cell {
    padding: 0 10px;
    color: #fff;
    white-space: nowrap;
}

.item-casino {
    display: flex;
    align-items: center;
    flex-basis: 20%;
    min-width: 180px;
}

.casino-number {
    font-size: 30px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 15px;
}

.casino-logo-wrapper {
    background-color: #7a3131;
    border-radius: 8px;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    width: 100%;
    max-width: 150px;
    height: 60px;
}

.casino-logo {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

.item-bonus {
    flex-basis: 30%;
    min-width: 250px;
    line-height: 1.3;
}

.bonus-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.bonus-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.bonus-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.item-rating {
    flex-basis: 20%;
    min-width: 180px;
    text-align: center;
}

.rating-stars {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.rating-votes {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 2px;
}

.rating-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.item-result {
    flex-basis: 15%;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-circle {
    width: 60px;
    height: 60px;
    background-color: #a4e400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #210d0d;
}

.item-action {
    flex-basis: 15%;
    min-width: 150px;
    text-align: right;
}

.btn.btn-green {
    background-color: #a4e400;
    color: #210d0d;
    padding: 12px 12px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn.btn-green:hover {
    background-color: #8ccf00;
    transform: translateY(-2px);
}


.label-badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
    background-color: gold;
    color: #210d0d;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.label-badge-gold {
    background-color: #FFD700;
}

.label-badge-blue {
    background-color: #17a2b8;
    color: #fff;
}

.label-badge-red {
    background-color: #dc3545;
    color: #fff;
}


@media (max-width: 992px) {
    .hero-section.hero-main-page h1 {
        font-size: 38px;
    }
    .hero-section.hero-main-page .hero-subtitle {
        font-size: 16px;
    }
    .filter-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .table-tabs {
        font-size: 12px;
        padding: 10px 10px;
        justify-content: flex-start;
    }
    .table-tabs .tab-btn {
        padding: 0 10px;
    }

    .casino-item {
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-bottom: none;
    }
    .casino-item:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }


    .item-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-bottom: none;
    }

    .item-cell {
        width: 100%;
        padding: 10px 0;
        text-align: left;
        white-space: normal;
    }
    .item-cell:last-child {
        padding-bottom: 0;
    }
    .item-cell:first-child {
        padding-top: 0;
    }


    .item-casino {
        flex-basis: auto;
        min-width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .casino-number {
        font-size: 28px;
        margin-right: 15px;
    }
    .casino-logo-wrapper {
        min-width: 100px;
        height: 60px;
        padding: 5px 10px;
    }
    .casino-logo {
        max-height: 56px;
    }


    .item-bonus {
        flex-basis: auto;
        min-width: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .bonus-title {
        font-size: 16px;
    }
    .bonus-description {
        font-size: 14px;
    }
    .bonus-note {
        font-size: 11px;
    }


    .item-rating {
        flex-basis: auto;
        min-width: auto;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .rating-stars {
        font-size: 18px;
    }
    .rating-votes {
        font-size: 12px;
    }
    .rating-disclaimer {
        font-size: 11px;
    }


    .item-result {
        flex-basis: auto;
        min-width: auto;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .result-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .item-action {
        flex-basis: auto;
        min-width: auto;
        text-align: center;
        padding-top: 15px;
    }
    .btn.btn-green {
        width: 80%;
        max-width: 250px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .label-badge {
        font-size: 10px;
        padding: 3px 10px;
        transform: translateY(-50%) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .hero-section.hero-main-page h1 {
        font-size: 32px;
    }
    .hero-section.hero-main-page .hero-subtitle {
        font-size: 14px;
    }
    .filter-btn {
        font-size: 12px;
        padding: 8px 15px;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-section.hero-main-page {
        padding: 60px 0 80px;
    }
    .hero-section.hero-main-page h1 {
        font-size: 26px;
    }
    .hero-section.hero-main-page .hero-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .filter-btn {
        font-size: 11px;
        padding: 7px 12px;
    }

    .table-tabs {
        font-size: 10px;
        padding: 8px 5px;
    }
    .table-tabs .tab-btn {
        padding: 0 5px;
    }

    .casino-item {
        margin-top: 15px;
        padding: 0;
    }
    .item-content {
        padding: 10px;
    }

    .casino-number {
        font-size: 24px;
        margin-right: 10px;
    }
    .casino-logo-wrapper {
        min-width: 105px;
        height: 60px;
        padding: 3px 8px;
    }
    .casino-logo {
        max-height: 55px;
    }
    .bonus-title {
        font-size: 14px;
    }
    .bonus-description {
        font-size: 12px;
    }
    .rating-stars {
        font-size: 16px;
    }
    .result-circle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .btn.btn-green {
        width: 90%;
        font-size: 13px;
        padding: 8px 15px;
    }
}