/* General Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* New font: Montserrat */
    line-height: 1.6;
    color: #f8f9fa; /* Lighter text for dark backgrounds */
    background-color: #1a1a2e; /* Deep purple/blue background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #0f0f1d; /* Darker header background */
    color: #f8f9fa;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 26px; /* Slightly larger logo */
    font-weight: bold;
    color: #e94560; /* Accent color for logo */
    letter-spacing: 1.5px; /* More spacing */
}

.main-navigation ul {
    list-style: none;
}

.main-navigation ul li {
    display: inline-block;
    margin-left: 30px;
}

.main-navigation ul li a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    color: #e94560; /* Accent color on hover/active */
}

/* Hero Banner Section */
.hero-banner {
    background: url('/images/main-hero.jpg') no-repeat center center/cover;
    color: #f8f9fa;
    text-align: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); /* Slightly darker overlay */
    z-index: -1;
}

.hero-banner h1 {
    font-size: 52px; /* Larger heading */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Text shadow for better readability */
}

.hero-banner p {
    font-size: 19px; /* Slightly larger paragraph */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Selection Section (formerly Options Section) */
.selection-section {
    background-color: #27273f; /* Slightly lighter purple/blue */
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.selection-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: #e94560; /* Accent color for active tab */
    font-weight: bold;
    border-bottom: 2px solid #e94560; /* Accent color underline */
}

.tab-button:hover:not(.active) {
    color: #f8f9fa;
}

.selection-card {
    background-color: #27273f; /* Background for individual cards */
    border-radius: 0;
    margin-bottom: 0;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f8f9fa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selection-card:first-of-type {
    border-top: none;
}
.selection-card:last-of-type {
    border-bottom: none;
}

.card-rank {
    font-size: 38px; /* Slightly larger rank number */
    font-weight: 600;
    margin-right: 40px;
    color: #e94560; /* Accent color for rank */
    padding-left: 20px;
}

.card-details {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-right: 20px;
}

.brand-badge {
    width: 160px; /* Slightly wider logo area */
    height: 85px; /* Slightly taller logo area */
    object-fit: contain;
    margin-right: 30px;
    background-color: #3d3d5f; /* Darker background for brand logo */
    border-radius: 10px; /* More rounded corners */
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Added shadow */
}

.card-details h3 {
    font-size: 22px; /* Slightly larger heading */
    margin-bottom: 5px;
    color: #f8f9fa;
    font-weight: 600;
}

.card-details p {
    font-size: 17px; /* Slightly larger paragraph */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.card-rating {
    text-align: center;
    margin-right: 40px;
    min-width: 150px;
}

.card-rating .score {
    font-size: 44px; /* Larger score */
    font-weight: bold;
    color: #e94560; /* Accent color for score */
    display: block;
    margin-bottom: 5px;
}

.card-rating .stars {
    color: #FFD700; /* Gold for stars */
    font-size: 24px; /* Larger stars */
    letter-spacing: 3px; /* More spacing */
    display: block;
    margin: 5px 0 8px;
}

.card-rating .reviews {
    font-size: 15px; /* Slightly larger reviews text */
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.card-action {
    padding-right: 20px;
}

.button-primary { /* Renamed from .btn-primary */
    background-color: #e94560; /* Primary accent color */
    color: #f8f9fa;
    padding: 16px 40px; /* More padding */
    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 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

.button-primary:hover {
    background-color: #c0364d; /* Darker shade on hover */
    transform: translateY(-3px); /* More pronounced lift effect */
}

/* Info Section (formerly Details Section) */
.info-section {
    background-color: #27273f;
    padding: 40px 0 20px;
    color: #f8f9fa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.info-list li {
    margin-bottom: 25px;
}

.info-list li h3 {
    font-size: 22px; /* Slightly larger heading */
    margin-bottom: 10px;
    color: #e94560; /* Accent color for headings */
    font-weight: 600;
}

.info-list li p {
    font-size: 17px; /* Slightly larger paragraph */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Footer Styles */
.site-footer {
    background-color: #0f0f1d; /* Darker footer background */
    color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
}

.site-footer .container {
    padding: 0 20px;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-navigation ul li {
    margin: 0 15px;
}

.footer-navigation ul li a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: #e94560; /* Accent color on hover */
}

.disclaimer-text {
    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-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.compliance-icon {
    height: 48px; /* Slightly larger icons */
    width: auto;
    filter: grayscale(100%) brightness(300%) opacity(0.9); /* Brighter and less grey */
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* Additional Page Content Styles (for about, contact, privacy pages) */
.page-content-section {
    background-color: #1a1a2e; /* Matches body background */
    padding: 60px 0;
    color: #f8f9fa;
    min-height: calc(100vh - 120px - 200px); /* Adjust based on actual header/footer heights */
}

.content-box {
    background-color: #27273f; /* Matches section background */
    padding: 40px;
    border-radius: 10px; /* More rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    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: #e94560; /* Accent color for checkmark */
    font-size: 22px; /* Larger checkmark */
    margin-right: 10px;
    line-height: 1;
    font-weight: bold;
}
.page-title {
    font-size: 36px; /* Larger title */
    font-weight: bold;
    color: #e94560; /* Accent color for page titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-content-section h2 {
    font-size: 28px; /* Larger H2 */
    font-weight: 600;
    color: #f8f9fa;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-content-section h3 {
    font-size: 22px; /* Larger H3 */
    font-weight: 600;
    color: #e94560; /* Accent color for H3 */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-content-section p {
    font-size: 17px; /* Slightly larger paragraph */
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.88);
}

.page-content-section strong {
    color: #f8f9fa;
}

.page-content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-content-section ul li {
    margin-bottom: 10px;
    font-size: 17px; /* Slightly larger list item */
    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;
}

/* SVG icon fill color updated for new palette */
.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="%23e94560"><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="%23e94560"><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="%23e94560"><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="%23e94560"><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="%23e94560"><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 Specific Styles */
.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: 17px; /* Slightly larger label */
    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: 14px 18px; /* More padding */
    border: 1px solid #e94560; /* Accent border */
    border-radius: 8px; /* More rounded */
    background-color: #3d3d5f; /* Darker background for inputs */
    color: #f8f9fa;
    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.6); /* Lighter placeholder text */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e94560; /* Accent color on focus */
    background-color: #4a4a75; /* Slightly lighter background on focus */
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 22px; /* More padding */
    background-color: #e94560; /* Accent color for submit button */
    color: #f8f9fa;
    border: none;
    border-radius: 8px; /* More rounded */
    font-size: 19px; /* Larger font */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 30px;
    letter-spacing: 0.8px; /* More spacing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow */
}

.btn-submit:hover {
    background-color: #c0364d; /* Darker shade on hover */
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .selection-card {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .card-rank {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #3d3d5f; /* Adjusted to new palette */
        border-radius: 10px; /* Adjusted to new palette */
        font-size: 30px; /* Slightly larger */
        margin-bottom: 20px;
        margin-right: 0;
        padding-left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .card-details {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .brand-badge {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .card-rating {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .card-action {
        width: 100%;
        padding-right: 0;
    }
    .card-action .button-primary {
        width: 80%;
        max-width: 300px;
    }

    .content-box {
        padding: 25px;
    }
    .page-title {
        font-size: 32px; /* Adjusted for consistency */
    }
    .page-content-section h2 {
        font-size: 24px; /* Adjusted for consistency */
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
    .main-navigation ul {
        margin-top: 10px;
    }
    .main-navigation ul li {
        margin: 0 10px;
    }
    .hero-banner h1 {
        font-size: 42px; /* Adjusted for smaller screens */
    }
    .hero-banner p {
        font-size: 17px; /* Adjusted for smaller screens */
    }
    .selection-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 #e94560; /* Accent color underline */
    }
    .footer-navigation ul {
        flex-direction: column;
        align-items: center;
    }
    .footer-navigation ul li {
        margin-bottom: 10px;
    }
    .contact-form-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 60px 0;
    }
    .hero-banner h1 {
        font-size: 34px; /* Further adjusted for smallest screens */
    }
    .hero-banner p {
        font-size: 15px; /* Further adjusted for smallest screens */
    }
    .card-rank {
        font-size: 28px;
    }
    .card-rating .score {
        font-size: 36px;
    }
    .card-action .button-primary {
        padding: 14px 30px; /* Adjusted padding */
        font-size: 15px;
    }
    .brand-badge {
        width: 130px; /* Adjusted size */
        height: 70px; /* Adjusted size */
    }
    .content-box {
        padding: 15px;
    }
    .page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .page-content-section h2 {
        font-size: 22px;
        margin-top: 25px;
    }
    .page-content-section h3 {
        font-size: 18px;
        margin-top: 20px;
    }
    .page-content-section p,
    .page-content-section ul li {
        font-size: 15px;
    }
    .form-group label {
        font-size: 15px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    .btn-submit {
        font-size: 17px;
        padding: 14px 18px;
    }
}


/* Specific styles for hero-main-page, casino-wrapper, casino-table-section, etc. */
.hero-banner.hero-main-page { /* Using new class name */
    background: url('/images/main-hero.jpg') no-repeat center center/cover;
    color: #f8f9fa;
    text-align: center;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
}

.hero-banner.hero-main-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay */
    z-index: -1;
}

.hero-banner.hero-main-page h1 {
    font-size: 52px; /* Larger heading */
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-banner.hero-main-page .hero-highlight {
    color: #ffd166; /* New highlight color (yellow/orange) */
}

.hero-banner.hero-main-page .hero-subtitle {
    font-size: 19px; /* Slightly larger subtitle */
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly more visible */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Stronger border */
    color: #f8f9fa;
    padding: 13px 28px; /* More padding */
    border-radius: 50px;
    font-size: 17px; /* Slightly larger font */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Added shadow */
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.25); /* More visible on hover */
    border-color: #f8f9fa;
}

.filter-btn.active {
    background-color: #ffd166; /* New accent color for active filter */
    border-color: #ffd166;
    color: #1a1a2e; /* Dark text for light background */
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

/* SVG icon fill color updated for new palette */
.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="%23f8f9fa"><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: 20px; /* Slightly larger icon */
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}
.filter-btn.active .icon-card,
.filter-btn.active .icon-roulette,
.filter-btn.active .icon-star {
    filter: invert(0%) brightness(0); /* Black for light background */
}
.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="%23f8f9fa"><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: 20px;
    width: 20px;
    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="%23f8f9fa"><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: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.casino-wrapper {
    background: url('/images/casino-background.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 40px; /* More padding */
    padding-bottom: 40px; /* More padding */
}

.casino-table-section {
    background-color: #1a1a2e; /* Matches body background */
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
    padding-top: 30px;
    border-radius: 12px; /* More rounded */
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); /* Stronger shadow */
}

.casino-table-section .container {
    padding-top: 20px;
}

.table-tabs {
    display: flex;
    justify-content: space-between;
    background-color: #27273f; /* Matches section background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Stronger border */
    padding: 18px 25px; /* More padding */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: rgba(255, 255, 255, 0.7); /* Lighter text */
    font-size: 15px; /* Slightly larger font */
    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 18px; /* More padding */
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.table-tabs .tab-btn.active {
    color: #ffd166; /* Accent color for active tab */
}


.casino-list {
    padding: 0;
}

.casino-item {
    background-color: #2e2e4e; /* Slightly darker background for items */
    margin-bottom: 1px;
    position: relative;
}

.casino-item:last-child {
    margin-bottom: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

.casino-item:hover {
    background-color: #3d3d5f; /* Lighter on hover */
}

.item-content {
    display: flex;
    align-items: center;
    padding: 22px; /* More padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Stronger border */
}

.casino-item:last-child .item-content {
    border-bottom: none;
}


.item-cell {
    padding: 0 12px; /* More padding */
    color: #f8f9fa;
    white-space: nowrap;
}

.item-casino {
    display: flex;
    align-items: center;
    flex-basis: 20%;
    min-width: 200px; /* Slightly wider */
}

.casino-number {
    font-size: 32px; /* Slightly larger number */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4); /* Slightly lighter */
    margin-right: 18px; /* More margin */
}

.casino-logo-wrapper {
    background-color: #4a4a75; /* Darker background for logo wrapper */
    border-radius: 10px; /* More rounded */
    padding: 10px 18px; /* More padding */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 130px; /* Wider */
    width: 100%;
    max-width: 160px; /* Wider */
    height: 65px; /* Taller */
}

.casino-logo {
    max-width: 100%;
    max-height: 50px; /* Taller */
    object-fit: contain;
}

.item-bonus {
    flex-basis: 30%;
    min-width: 280px; /* Wider */
    line-height: 1.4; /* More line height */
}

.bonus-title {
    font-size: 20px; /* Larger title */
    font-weight: bold;
    margin-bottom: 6px; /* More margin */
    color: #ffd166; /* Accent color */
}

.bonus-description {
    font-size: 17px; /* Slightly larger description */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.bonus-note {
    font-size: 13px; /* Slightly larger note */
    color: rgba(255, 255, 255, 0.6); /* Lighter note */
}

.item-rating {
    flex-basis: 20%;
    min-width: 200px; /* Wider */
    text-align: center;
}

.rating-stars {
    color: #FFD700; /* Gold for stars */
    font-size: 22px; /* Larger stars */
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.rating-votes {
    font-size: 15px; /* Slightly larger votes text */
    color: rgba(255, 255, 255, 0.75); /* Slightly lighter */
    display: block;
    margin-bottom: 3px;
}

.rating-disclaimer {
    font-size: 13px; /* Slightly larger disclaimer */
    color: rgba(255, 255, 255, 0.6);
}

.item-result {
    flex-basis: 15%;
    min-width: 110px; /* Wider */
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-circle {
    width: 65px; /* Larger circle */
    height: 65px; /* Larger circle */
    background-color: #ffd166; /* Accent color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px; /* Larger font */
    font-weight: bold;
    color: #1a1a2e; /* Dark text for light background */
}

.item-action {
    flex-basis: 15%;
    min-width: 160px; /* Wider */
    text-align: right;
}

.button.button-green { /* Renamed from .btn.btn-green */
    background-color: #ffd166; /* Accent color */
    color: #1a1a2e;
    padding: 14px 14px; /* More padding */
    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 5px 10px rgba(0, 0, 0, 0.25); /* Stronger shadow */
    display: inline-block;
}

.button.button-green:hover {
    background-color: #f5bc47; /* Darker shade on hover */
    transform: translateY(-3px);
}


.label-badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%) rotate(-10deg);
    background-color: gold;
    color: #1a1a2e; /* Dark text for light background */
    padding: 6px 18px; /* More padding */
    border-radius: 6px; /* More rounded */
    font-size: 13px; /* Slightly larger font */
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    z-index: 10;
    white-space: nowrap;
}

.label-badge-gold {
    background-color: #FFD700;
}

.label-badge-blue {
    background-color: #4CAF50; /* New blue (a shade of green) for contrast */
    color: #f8f9fa;
}

.label-badge-red {
    background-color: #dc3545;
    color: #f8f9fa;
}


@media (max-width: 992px) {
    .hero-banner.hero-main-page h1 {
        font-size: 44px;
    }
    .hero-banner.hero-main-page .hero-subtitle {
        font-size: 17px;
    }
    .filter-btn {
        font-size: 15px;
        padding: 11px 22px;
    }

    .table-tabs {
        font-size: 13px;
        padding: 12px 12px;
        justify-content: flex-start;
    }
    .table-tabs .tab-btn {
        padding: 0 12px;
    }

    .casino-item {
        margin-top: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        border-bottom: none;
    }
    .casino-item:last-child {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }


    .item-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-bottom: none;
    }

    .item-cell {
        width: 100%;
        padding: 12px 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.08);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .casino-number {
        font-size: 30px;
        margin-right: 18px;
    }
    .casino-logo-wrapper {
        min-width: 110px;
        height: 65px;
        padding: 6px 12px;
    }
    .casino-logo {
        max-height: 60px;
    }


    .item-bonus {
        flex-basis: auto;
        min-width: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .bonus-title {
        font-size: 18px;
    }
    .bonus-description {
        font-size: 15px;
    }
    .bonus-note {
        font-size: 12px;
    }


    .item-rating {
        flex-basis: auto;
        min-width: auto;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .rating-stars {
        font-size: 20px;
    }
    .rating-votes {
        font-size: 13px;
    }
    .rating-disclaimer {
        font-size: 12px;
    }


    .item-result {
        flex-basis: auto;
        min-width: auto;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    .result-circle {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .item-action {
        flex-basis: auto;
        min-width: auto;
        text-align: center;
        padding-top: 18px;
    }
    .button.button-green {
        width: 85%;
        max-width: 280px;
        font-size: 15px;
        padding: 12px 25px;
    }

    .label-badge {
        font-size: 11px;
        padding: 4px 12px;
        transform: translateY(-50%) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .hero-banner.hero-main-page h1 {
        font-size: 38px;
    }
    .hero-banner.hero-main-page .hero-subtitle {
        font-size: 15px;
    }
    .filter-btn {
        font-size: 13px;
        padding: 9px 18px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .hero-banner.hero-main-page {
        padding: 60px 0 80px;
    }
    .hero-banner.hero-main-page h1 {
        font-size: 30px;
    }
    .hero-banner.hero-main-page .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .filter-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .table-tabs {
        font-size: 11px;
        padding: 10px 8px;
    }
    .table-tabs .tab-btn {
        padding: 0 8px;
    }

    .casino-item {
        margin-top: 15px;
        padding: 0;
    }
    .item-content {
        padding: 12px;
    }

    .casino-number {
        font-size: 26px;
        margin-right: 12px;
    }
    .casino-logo-wrapper {
        min-width: 100px;
        height: 60px;
        padding: 4px 10px;
    }
    .casino-logo {
        max-height: 58px;
    }
    .bonus-title {
        font-size: 16px;
    }
    .bonus-description {
        font-size: 13px;
    }
    .rating-stars {
        font-size: 18px;
    }
    .result-circle {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    .button.button-green {
        width: 90%;
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* ... (existing CSS code above) ... */

.bullet-list li span {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bullet-list li .icon-sport {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23e94560"><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>');
    content: none;
}
.bullet-list li .icon-casino {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23e94560"><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>');
    content: none;
}
.bullet-list li .icon-promo {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23e94560"><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>');
    content: none;
}
.bullet-list li .icon-secure {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%23e94560"><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>');
    content: none;
}
.bullet-list li .icon-mobile {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%23e94560"><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>');
    content: none;
}

/* ... (existing CSS code below) ... */