/* style/casino-games-sicbo.css */

/* General styles for the Sic Bo page */
.page-casino-games-sicbo {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
}

.page-casino-games-sicbo__hero {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-casino-games-sicbo__hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-casino-games-sicbo__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Highlight with secondary color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino-games-sicbo__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-casino-games-sicbo__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-casino-games-sicbo__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-casino-games-sicbo__btn--primary {
    background-color: #FFC107; /* Secondary color for primary action */
    color: #1a1a2e; /* Dark text for light button */
    border: 2px solid #FFC107;
}

.page-casino-games-sicbo__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-casino-games-sicbo__btn--secondary {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-casino-games-sicbo__btn--secondary:hover {
    background-color: rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
}

.page-casino-games-sicbo__hero-image-wrapper {
    margin-top: 40px;
    max-width: 800px;
    width: 100%;
}

.page-casino-games-sicbo__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-casino-games-sicbo__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.page-casino-games-sicbo__section:nth-of-type(even) {
    background-color: #22223b; /* Slightly different dark background */
}

.page-casino-games-sicbo__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary color for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid #FFC107;
    padding-bottom: 15px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.page-casino-games-sicbo__content-block {
    margin-top: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-casino-games-sicbo__content-block p {
    margin-bottom: 1em;
}

.page-casino-games-sicbo__content-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-casino-games-sicbo__content-block li {
    margin-bottom: 0.5em;
}

.page-casino-games-sicbo__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-games-sicbo__table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #2e2e4f;
    border-radius: 10px;
    overflow: hidden;
}

.page-casino-games-sicbo__table th,
.page-casino-games-sicbo__table td {
    border: 1px solid #4a4a6e;
    padding: 15px;
    text-align: left;
    color: #f8f9fa;
}

.page-casino-games-sicbo__table th {
    background-color: #007BFF;
    color: #ffffff;
    font-weight: bold;
}

.page-casino-games-sicbo__table tr:nth-child(even) {
    background-color: #3a3a5e;
}

.page-casino-games-sicbo__table tr:hover {
    background-color: #4a4a6e;
}

.page-casino-games-sicbo__advantages-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-casino-games-sicbo__advantages-list li {
    background-color: #2e2e4f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 45px;
    font-size: 1.05em;
}

.page-casino-games-sicbo__advantages-list li::before {
    content: '✔️';
    position: absolute;
    left: 15px;
    color: #FFC107;
    font-size: 1.2em;
    top: 20px;
}

.page-casino-games-sicbo__faq-item {
    background-color: #2e2e4f;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-casino-games-sicbo__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-casino-games-sicbo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-casino-games-sicbo__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-casino-games-sicbo__faq-answer {
    font-size: 1em;
    color: #e0e0e0;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #4a4a6e;
    margin-top: 10px;
}

.page-casino-games-sicbo__faq-answer.active {
    display: block;
}

.page-casino-games-sicbo__faq-item a,
.page-casino-games-sicbo__content-block a {
    color: #FFC107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino-games-sicbo__faq-item a:hover,
.page-casino-games-sicbo__content-block a:hover {
    color: #e0a800;
    text-decoration: underline;
}

.page-casino-games-sicbo__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-casino-games-sicbo__hero {
        padding: 80px 15px;
    }

    .page-casino-games-sicbo__title {
        font-size: 2.5em;
    }

    .page-casino-games-sicbo__subtitle {
        font-size: 1.2em;
    }

    .page-casino-games-sicbo__section-title {
        font-size: 2em;
    }

    .page-casino-games-sicbo__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-casino-games-sicbo__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-casino-games-sicbo__advantages-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-casino-games-sicbo__hero {
        padding: 60px 10px;
    }

    .page-casino-games-sicbo__title {
        font-size: 2em;
    }

    .page-casino-games-sicbo__subtitle {
        font-size: 1em;
    }

    .page-casino-games-sicbo__section-title {
        font-size: 1.8em;
    }

    .page-casino-games-sicbo__btn {
        width: 100%;
        box-sizing: border-box;
    }

    .page-casino-games-sicbo__table th,
    .page-casino-games-sicbo__table td {
        padding: 10px;
        font-size: 0.9em;
    }
}