/**
 * Big Bass Casino Slot Plugin Styles
 *
 * Styles for elements generated by the Big Bass Casino Slot plugin.
 * These styles are meant to be applied on top of the theme's styles.
 */

/* Table of Contents (if plugin generates it directly, otherwise theme handles it) */
.bbcs-toc {
    background-color: #252535; /* Slightly different from theme's TOC for distinction if needed */
    border: 1px solid #383848;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.bbcs-toc .toc-title { /* More specific selector */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3em;
    color: #f0f0f0;
}

.bbcs-toc ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.bbcs-toc ul li {
    margin-bottom: 8px;
}

.bbcs-toc ul li a {
    text-decoration: none;
    color: #9cbaff; /* Lighter blue for TOC links */
    transition: color 0.2s ease-in-out;
}

.bbcs-toc ul li a:hover {
    color: #cce0ff;
}

/* Accordion for FAQ */
.bbcs-accordion .accordion-item {
    margin-bottom: 8px; /* Tighter spacing for plugin accordions */
    border: 1px solid #3c3c50;
    border-radius: 5px;
    overflow: hidden;
}

.bbcs-accordion .accordion-title {
    background-color: #333344; /* Darker accordion title */
    color: #ffffff;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 600; /* Slightly bolder */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.bbcs-accordion .accordion-title:hover {
    background-color: #3d3d52;
}

.bbcs-accordion .accordion-title::after {
    content: '+'; /* Collapsed state symbol */
    font-size: 1.6em;
    line-height: 1;
    font-weight: bold;
    transition: transform 0.3s ease-out;
}

.bbcs-accordion .accordion-item.active .accordion-title::after {
    content: '−'; /* Expanded state symbol */
    transform: rotate(180deg); /* Optional: rotate for effect */
}

.bbcs-accordion .accordion-content {
    padding: 15px 20px;
    background-color: #282838; /* Slightly lighter content area */
    display: none; /* Hidden by default, JS will handle display */
    border-top: 1px solid #3c3c50;
}

.bbcs-accordion .accordion-content p:last-child {
    margin-bottom: 0;
}

/* Plugin-specific Call to Action Buttons */
.bbcs-cta-button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.05rem;
    font-weight: bold;
    color: #ffffff !important; /* Ensure text color is white */
    background-color: #ff9900 !important; /* Bright orange, distinct from theme's primary */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important; /* Ensure no underline */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bbcs-cta-button:hover,
.bbcs-cta-button:focus {
    background-color: #e68a00 !important; /* Darker orange on hover */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 8px rgba(0,0,0,0.2);
}

/* Styling for game info tables if generated by plugin */
.bbcs-game-info-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    background-color: #252535;
    border-radius: 5px;
    overflow: hidden; /* To make border-radius work on table */
}

.bbcs-game-info-table th,
.bbcs-game-info-table td {
    padding: 10px 15px;
    border: 1px solid #383848;
    text-align: left;
}

.bbcs-game-info-table th {
    background-color: #333344;
    color: #f0f0f0;
    font-weight: bold;
}

.bbcs-game-info-table td {
    color: #d0d0d0;
}

.bbcs-game-info-table tr:nth-child(even) td {
    background-color: #2a2a3a;
}

/* Image alignment and styling within plugin content */
.bbcs-image-left {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    max-width: 50%; /* Adjust as needed */
}

.bbcs-image-right {
    float: right;
    margin-left: 15px;
    margin-bottom: 10px;
    max-width: 50%; /* Adjust as needed */
}

.bbcs-image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    max-width: 80%; /* Adjust as needed */
}

.bbcs-image-full {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    max-width: 100%;
}

.bbcs-image-container img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Clearfix for floated elements */
.bbcs-clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Microdata specific styling (mostly hidden, but can be used for debug) */
[itemscope] {
    /* outline: 1px dashed red; */ /* For debugging microdata scopes */
}
[itemprop] {
    /* outline: 1px dotted blue; */ /* For debugging microdata properties */
}