/* General Body Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb; /* Light blue tint */
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #0056b3; /* Primary Blue */
    transition: color 0.3s ease;
}

a:hover {
    color: #003d80; /* Darker Blue */
}

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

.header-top-bar {
    background-color: #e3f2fd; /* Light Blue BG */
    padding: 8px 0;
    border-bottom: 1px solid #bbdefb;
    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: #0056b3; /* Brand Blue */
}

.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: #0056b3;
    border-bottom: 2px solid #0056b3;
}

.cta-button {
    background-color: #007bff; /* Bright Blue Button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.cta-button:hover {
    background-color: #0056b3;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

/* Banner Slider Section */
.banner-slider {
    width: 100%;
    position: relative;
    background: #fff; 
}

.slider-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    overflow: hidden;
}

.slide-img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}

.slide-img.active {
    opacity: 1;
    z-index: 1;
}

/* CTA / Intro Section (Below Banner) */
.cta-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.cta-section h1 {
    font-size: 2.2em;
    color: #0056b3; /* Header Blue */
    margin: 0 0 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: justify; 
}

.intro-content p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-ctas {
    margin-top: 30px;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-slider {
    }
    
    .cta-section h1 {
        font-size: 1.8em;
    }
}

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

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

.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: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border: 1px solid #e0e0e0;
}

.list-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #90caf9; /* Light Blue Border */
}

.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;
    color: #0056b3;
}

.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: #e3f2fd; /* Light Blue BG */
}

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

.screening-logic-section h3 {
    font-size: 1.5em;
    color: #0d47a1; /* Deep Blue */
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #90caf9;
}

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

.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;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.review-article h3 {
    font-size: 2em;
    color: #0056b3;
    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; /* Keep checks green for positivity */
}

.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: #f4f8fb;
}

.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;
    color: #0056b3;
    /* 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;
    color: #007bff;
}

.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: #0d47a1; /* Dark Blue Footer */
    color: #bbdefb;
    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: #bbdefb;
    margin-bottom: 10px;
    display: block;
}

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

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

/* Conversion & SEO Enhancements */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.hot-brand {
    border: 2px solid #e74c3c !important;
    position: relative;
    background: #fff9f9 !important;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.cta-button.secondary {
    background-color: #f39c12; /* Keep Orange for Contrast */
}

.cta-button.secondary:hover {
    background-color: #e67e22;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.cta-button.outline:hover {
    background: #007bff;
    color: #fff;
}

.cta-button.green {
    background-color: #007bff;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.brand-tag {
    font-size: 0.9em;
    color: #e67e22;
    font-weight: bold;
    margin-top: 8px;
    display: block;
}

.seo-section {
    padding: 60px 0;
    background: #fff;
}

.seo-text-block h3 {
    color: #0056b3;
    margin-top: 25px;
}

.seo-text-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.seo-text-block li {
    margin-bottom: 12px;
    list-style-type: disc;
}

.seo-content-top {
    text-align: center;
    margin-bottom: 50px;
}

.seo-content-top h2 {
    font-size: 2.2em;
    color: #0d47a1;
    margin-bottom: 20px;
}

/* Footer Bottom Style */
.footer-bottom p {
    margin: 0;
}

/* 88xx Brand Showcase */
.brand-showcase-88xx {
    background: #e3f2fd; /* Light Blue BG */
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    border-left: 8px solid #0056b3;
}

.showcase-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.showcase-text {
    flex: 1;
}

.showcase-image {
    flex: 0 0 350px;
    text-align: center;
}

.app-screenshot {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid #fff;
}

.showcase-cta {
    text-align: left;
    margin-top: 30px;
}


/* New Service Grid for High Density */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for density */
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #007bff;
}

.service-card h4 {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.1em;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Step Guide Styles */
.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step-box {
    background: #f4f8fb;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #e3f2fd;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #007bff;
    color: #fff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.step-box h3 {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
}

.step-box p {
    font-size: 0.95em;
    color: #555;
}

.image-caption {
    font-size: 0.85em;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}


/* Catfish Banner */
.catfish-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.catfish-link {
    display: block;
    max-width: 100%;
}

.catfish-img {
    max-width: 100%;
    height: auto;
    max-height: 80px; /* Adjust based on image aspect ratio */
    display: inline-block;
}

.catfish-close-btn {
    position: absolute;
    top: -15px;
    right: 10px;
    background: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 26px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.catfish-close-btn:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    .catfish-img {
        max-height: 60px; /* Smaller on mobile */
        width: 100%;
        object-fit: contain;
    }
    
    .catfish-close-btn {
        right: 5px;
        top: -15px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }

    .main-navigation {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .nav-menu {
        display: none;
    }
    
    .brand-showcase-88xx {
        padding: 20px;
    }
    
    .showcase-flex {
        flex-direction: column;
        gap: 20px;
    }

    .app-screenshot {
        max-width: 250px; /* Limit image size on mobile */
    }

    /* Stack service grid on very small screens */
    .service-details-grid {
        grid-template-columns: 1fr;
    }
}