/* style/w88-strategy-slots-selection-payout.css */
:root {
    --page-w88-primary-color: #CC0000;
    --page-w88-secondary-color: #FFCC00;
    --page-w88-text-dark: #333333;
    --page-w88-text-light: #FFFFFF;
    --page-w88-background-light: #F8F8F8;
    --page-w88-background-dark: #222222;
    --page-w88-link-color: #CC0000;
    --page-w88-link-hover-color: #990000;
}

.page-w88-strategy-slots-selection-payout {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-w88-text-dark);
    background-color: var(--page-w88-background-light);
}

.page-w88-strategy-slots-selection-payout__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-w88-strategy-slots-selection-payout__hero {
    background: linear-gradient(135deg, var(--page-w88-primary-color), var(--page-w88-secondary-color));
    color: var(--page-w88-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-w88-strategy-slots-selection-payout__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:w88,slot,abstract,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-w88-strategy-slots-selection-payout__hero > .page-w88-strategy-slots-selection-payout__container {
    position: relative;
    z-index: 1;
}

.page-w88-strategy-slots-selection-payout__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-w88-text-light);
}

.page-w88-strategy-slots-selection-payout__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--page-w88-text-light);
}

.page-w88-strategy-slots-selection-payout__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-w88-strategy-slots-selection-payout__btn--primary {
    background-color: var(--page-w88-secondary-color);
    color: var(--page-w88-primary-color);
    border: 2px solid var(--page-w88-secondary-color);
}

.page-w88-strategy-slots-selection-payout__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-w88-strategy-slots-selection-payout__btn--secondary {
    background-color: transparent;
    color: var(--page-w88-text-light);
    border: 2px solid var(--page-w88-text-light);
}

.page-w88-strategy-slots-selection-payout__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-w88-strategy-slots-selection-payout__section {
    padding: 60px 0;
}

.page-w88-strategy-slots-selection-payout__section--dark {
    background-color: var(--page-w88-background-dark);
    color: var(--page-w88-text-light);
}

.page-w88-strategy-slots-selection-payout__section--dark .page-w88-strategy-slots-selection-payout__section-title {
    color: var(--page-w88-secondary-color);
}

.page-w88-strategy-slots-selection-payout__section-title {
    font-size: 2.5em;
    color: var(--page-w88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-w88-strategy-slots-selection-payout__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-w88-strategy-slots-selection-payout__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-w88-strategy-slots-selection-payout__text-content {
    flex: 1;
}

.page-w88-strategy-slots-selection-payout__text-content h3 {
    font-size: 1.8em;
    color: var(--page-w88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-w88-strategy-slots-selection-payout__section--dark .page-w88-strategy-slots-selection-payout__text-content h3 {
    color: var(--page-w88-secondary-color);
}

.page-w88-strategy-slots-selection-payout__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-w88-strategy-slots-selection-payout__text-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-w88-strategy-slots-selection-payout__text-content ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.page-w88-strategy-slots-selection-payout__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-w88-strategy-slots-selection-payout__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-w88-strategy-slots-selection-payout__image--full-width {
    width: 100%;
    margin-top: 30px;
}

.page-w88-strategy-slots-selection-payout__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-w88-strategy-slots-selection-payout__grid-item {
    background-color: var(--page-w88-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-w88-strategy-slots-selection-payout__section--dark .page-w88-strategy-slots-selection-payout__grid-item {
    background-color: #333333;
    color: var(--page-w88-text-light);
}

.page-w88-strategy-slots-selection-payout__grid-item:hover {
    transform: translateY(-5px);
}

.page-w88-strategy-slots-selection-payout__grid-item h3 {
    font-size: 1.5em;
    color: var(--page-w88-primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-w88-strategy-slots-selection-payout__section--dark .page-w88-strategy-slots-selection-payout__grid-item h3 {
    color: var(--page-w88-secondary-color);
}

.page-w88-strategy-slots-selection-payout__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.page-w88-strategy-slots-selection-payout__game-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-w88-strategy-slots-selection-payout__game-list li {
    background-color: var(--page-w88-primary-color);
    color: var(--page-w88-text-light);
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-w88-strategy-slots-selection-payout__section--cta {
    background-color: var(--page-w88-primary-color);
    color: var(--page-w88-text-light);
    text-align: center;
}

.page-w88-strategy-slots-selection-payout__section--cta .page-w88-strategy-slots-selection-payout__section-title {
    color: var(--page-w88-secondary-color);
    margin-bottom: 20px;
}

.page-w88-strategy-slots-selection-payout__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-w88-strategy-slots-selection-payout__cta-buttons {
    margin-top: 30px;
}

.page-w88-strategy-slots-selection-payout__faq-item {
    background-color: var(--page-w88-background-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
}

.page-w88-strategy-slots-selection-payout__faq-item h3 {
    color: var(--page-w88-primary-color);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-w88-strategy-slots-selection-payout__faq-item p {
    font-size: 1.1em;
    color: var(--page-w88-text-dark);
}

.page-w88-strategy-slots-selection-payout a {
    color: var(--page-w88-link-color);
    text-decoration: none;
}

.page-w88-strategy-slots-selection-payout a:hover {
    text-decoration: underline;
    color: var(--page-w88-link-hover-color);
}

.page-w88-strategy-slots-selection-payout .highlight {
    color: var(--page-w88-secondary-color);
    font-weight: bold;
}

.page-w88-strategy-slots-selection-payout__section--dark .highlight {
    color: var(--page-w88-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-w88-strategy-slots-selection-payout__hero-title {
        font-size: 2.8em;
    }
    .page-w88-strategy-slots-selection-payout__hero-subtitle {
        font-size: 1.3em;
    }
    .page-w88-strategy-slots-selection-payout__section-title {
        font-size: 2em;
    }
    .page-w88-strategy-slots-selection-payout__content-wrapper {
        flex-direction: column;
    }
    .page-w88-strategy-slots-selection-payout__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-w88-strategy-slots-selection-payout__grid-item {
        padding: 25px;
    }
    .page-w88-strategy-slots-selection-payout__text-content h3 {
        font-size: 1.6em;
    }
    .page-w88-strategy-slots-selection-payout__grid-item h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-w88-strategy-slots-selection-payout__hero {
        padding: 80px 0;
    }
    .page-w88-strategy-slots-selection-payout__hero-title {
        font-size: 2.2em;
    }
    .page-w88-strategy-slots-selection-payout__hero-subtitle {
        font-size: 1.1em;
    }
    .page-w88-strategy-slots-selection-payout__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-w88-strategy-slots-selection-payout__section {
        padding: 40px 0;
    }
    .page-w88-strategy-slots-selection-payout__section-title {
        font-size: 1.8em;
    }
    .page-w88-strategy-slots-selection-payout__grid {
        grid-template-columns: 1fr;
    }
    .page-w88-strategy-slots-selection-payout__cta-text {
        font-size: 1.1em;
    }
    .page-w88-strategy-slots-selection-payout__game-list li {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-w88-strategy-slots-selection-payout__faq-item h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-w88-strategy-slots-selection-payout__hero-title {
        font-size: 1.8em;
    }
    .page-w88-strategy-slots-selection-payout__hero-subtitle {
        font-size: 1em;
    }
    .page-w88-strategy-slots-selection-payout__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-w88-strategy-slots-selection-payout__section-title {
        font-size: 1.5em;
    }
    .page-w88-strategy-slots-selection-payout__text-content h3 {
        font-size: 1.4em;
    }
    .page-w88-strategy-slots-selection-payout__grid-item h3 {
        font-size: 1.2em;
    }
    .page-w88-strategy-slots-selection-payout__faq-item h3 {
        font-size: 1.2em;
    }
}