/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e7e7e7;
    font-size: 0.9em;
    color: #555;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-bar .contact-info a {
    margin-right: 15px;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-weight: 600;
    color: #555;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x600.png?text=Casino+Background') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3em;
    margin: 0 0 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Baccarat List View Styles */
.baccarat-list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.list-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.item-logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.item-logo img {
    display: block;
    width: 120px;
    height: auto;
}

.item-info {
    flex-grow: 1;
    min-width: 150px;
}

.item-info h3 {
    margin: 0 0 5px;
    font-size: 1.2em;
}

.rating {
    font-size: 1.1em;
    color: #f39c12;
}

.item-bonus {
    flex-grow: 2;
    padding: 0 20px;
    text-align: left;
}

.item-bonus strong {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.item-cta {
    flex-shrink: 0;
}

/* Screening Logic Section */
.screening-logic-section {
    padding: 60px 0;
    background-color: #eaf2fb;
    /* A light blue to differentiate */
}

.screening-logic-section .container {
    max-width: 900px;
}

.screening-logic-section h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #cdddeb;
}

.screening-logic-section p,
.screening-logic-section li {
    line-height: 1.7;
    color: #34495e;
}

.screening-logic-section ul {
    list-style-position: inside;
    padding-left: 0;
}

.screening-logic-section .conclusion {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-left: 5px solid #007bff;
    font-style: italic;
}

/* Detailed Reviews Section */
.detailed-reviews {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.review-article {
    background: #fff;
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-article h3 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

.review-article .review-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
}

.review-article p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-details-table {
    margin: 30px 0;
    border-collapse: collapse;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.review-details-table td {
    padding: 15px;
    border-bottom: 1px solid #e7e7e7;
}

.review-details-table td:first-child {
    font-weight: bold;
    width: 30%;
    background-color: #f1f1f1;
}

.pros-cons-container {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.pros-cons-box {
    flex: 1;
}

.pros-cons-box h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.pros-cons-box ul {
    list-style-type: none;
    padding: 0;
}

.pros-cons-box li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px dashed #ddd;
}

.pros-cons-box li::before {
    font-family: 'Arial';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.2em;
}

.pros-list li::before {
    content: '✓';
    color: #28a745;
}

.cons-list li::before {
    content: '✗';
    color: #dc3545;
}

.review-visit-link {
    text-align: center;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Remove default marker */
}

.faq-item summary::-webkit-details-marker {
    display: none;
    /* Chrome */
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    line-height: 1.7;
}


/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 20px;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 992px) {
    .list-item {
        flex-wrap: wrap;
    }

    .item-info {
        flex-basis: calc(100% - 140px);
        /* Full width minus logo */
    }

    .item-bonus,
    .item-cta {
        flex-basis: 100%;
        padding: 0;
        margin-top: 15px;
        text-align: left;
    }

    .item-cta .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .nav-menu {
        display: none;
    }

    .pros-cons-container {
        flex-direction: column;
    }

    .review-article {
        padding: 5px;
    }

    .container {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-logo {
        margin-bottom: 15px;
    }

    .item-info {
        flex-basis: 100%;
    }
}