/* style/game-guides-baccarat-strategy.css */

/* General styling for the page content wrapper */
.page-game-guides-baccarat-strategy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for body text for good contrast */
    background-color: #f8f9fa; /* Light background */
}

/* Container for content sections */
.page-game-guides-baccarat-strategy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-game-guides-baccarat-strategy__hero {
    background: linear-gradient(135deg, #007BFF, #FFC107); /* Main and auxiliary colors */
    color: #fff; /* White text for hero section */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-game-guides-baccarat-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for text readability */
    z-index: 1;
}

.page-game-guides-baccarat-strategy .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-game-guides-baccarat-strategy .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.page-game-guides-baccarat-strategy .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
}

.page-game-guides-baccarat-strategy .hero-description a {
    color: #FFC107; /* Auxiliary color for links in hero */
    text-decoration: underline;
}

.page-game-guides-baccarat-strategy .hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-game-guides-baccarat-strategy .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-game-guides-baccarat-strategy .btn-primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #0056b3; /* Darker blue for contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-baccarat-strategy .btn-primary:hover {
    background-color: #e0a800; /* Darker auxiliary */
    transform: translateY(-2px);
}

.page-game-guides-baccarat-strategy .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-baccarat-strategy .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-game-guides-baccarat-strategy .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-game-guides-baccarat-strategy .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

/* Section styling */
.page-game-guides-baccarat-strategy .section-title {
    font-size: 2.5em;
    color: #007BFF; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-game-guides-baccarat-strategy .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFC107; /* Auxiliary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-guides-baccarat-strategy .intro-section,
.page-game-guides-baccarat-strategy .basic-strategies-section,
.page-game-guides-baccarat-strategy .advanced-strategies-section,
.page-game-guides-baccarat-strategy .money-management-section,
.page-game-guides-baccarat-strategy .live-dealer-section,
.page-game-guides-baccarat-strategy .common-mistakes-section,
.page-game-guides-baccarat-strategy .responsible-gambling-section,
.page-game-guides-baccarat-strategy .why-topgamebai-section,
.page-game-guides-baccarat-strategy .faq-section {
    padding: 60px 0;
    background-color: #fff; /* White background for content sections */
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.page-game-guides-baccarat-strategy .basic-strategies-section,
.page-game-guides-baccarat-strategy .advanced-strategies-section {
    background-color: #f0f7ff; /* Lighter blue background for strategy sections */
}

.page-game-guides-baccarat-strategy p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-game-guides-baccarat-strategy p a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
}

.page-game-guides-baccarat-strategy p a:hover {
    text-decoration: underline;
}

/* Strategy Cards */
.page-game-guides-baccarat-strategy .strategy-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-baccarat-strategy .strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.page-game-guides-baccarat-strategy .strategy-title {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 20px;
    text-align: left;
}

.page-game-guides-baccarat-strategy .strategy-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-game-guides-baccarat-strategy ol,
.page-game-guides-baccarat-strategy ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-game-guides-baccarat-strategy ol li,
.page-game-guides-baccarat-strategy ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-game-guides-baccarat-strategy .styled-list li::before {
    content: '✓'; /* Checkmark icon */
    color: #FFC107; /* Auxiliary color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Section specific images */
.page-game-guides-baccarat-strategy .section-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Call to action at bottom */
.page-game-guides-baccarat-strategy .cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* FAQ Section */
.page-game-guides-baccarat-strategy .faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-game-guides-baccarat-strategy .faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-guides-baccarat-strategy .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-game-guides-baccarat-strategy .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-guides-baccarat-strategy .faq-answer {
    font-size: 1.05em;
    color: #666;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-guides-baccarat-strategy .faq-answer.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-guides-baccarat-strategy .hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-baccarat-strategy .hero-description {
        font-size: 1.1em;
    }
    .page-game-guides-baccarat-strategy .section-title {
        font-size: 2em;
    }
    .page-game-guides-baccarat-strategy .strategy-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-baccarat-strategy__hero {
        padding: 60px 0;
        min-height: 300px;
    }
    .page-game-guides-baccarat-strategy .hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-baccarat-strategy .hero-description {
        font-size: 1em;
    }
    .page-game-guides-baccarat-strategy .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    .page-game-guides-baccarat-strategy .btn {
        width: 80%;
        max-width: 300px;
    }
    .page-game-guides-baccarat-strategy .section-title {
        font-size: 1.8em;
    }
    .page-game-guides-baccarat-strategy .strategy-title {
        font-size: 1.6em;
    }
    .page-game-guides-baccarat-strategy ol,
    .page-game-guides-baccarat-strategy ul {
        margin-left: 15px;
    }
    .page-game-guides-baccarat-strategy .faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-baccarat-strategy .container {
        padding: 0 15px;
    }
    .page-game-guides-baccarat-strategy .hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-baccarat-strategy .hero-description {
        font-size: 0.9em;
    }
    .page-game-guides-baccarat-strategy .section-title {
        font-size: 1.5em;
    }
    .page-game-guides-baccarat-strategy .strategy-title {
        font-size: 1.4em;
    }
    .page-game-guides-baccarat-strategy p,
    .page-game-guides-baccarat-strategy ol li,
    .page-game-guides-baccarat-strategy ul li,
    .page-game-guides-baccarat-strategy .faq-answer {
        font-size: 0.95em;
    }
}