/* style/resources-lu88-game-strategy.css */

/* Base styles for the page content */
.page-resources-lu88-game-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-resources-lu88-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-lu88-game-strategy__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-lu88-game-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,blue_gradient]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-lu88-game-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Auxiliary color for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-lu88-game-strategy__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-resources-lu88-game-strategy__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;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-lu88-game-strategy__btn--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-resources-lu88-game-strategy__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-resources-lu88-game-strategy__btn--secondary {
    background-color: #003366; /* Main color */
    color: #FFCC00; /* Auxiliary color for text */
    border: 2px solid #FFCC00;
    margin-left: 15px;
}

.page-resources-lu88-game-strategy__btn--secondary:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.page-resources-lu88-game-strategy__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-lu88-game-strategy__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-resources-lu88-game-strategy__section--alt-bg {
    background-color: #f0f4f7;
}

.page-resources-lu88-game-strategy__section--highlight {
    background-color: #003366; /* Main color */
    color: #fff;
    text-align: center;
}

.page-resources-lu88-game-strategy__section--highlight .page-resources-lu88-game-strategy__section-title {
    color: #FFCC00;
}

.page-resources-lu88-game-strategy__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-resources-lu88-game-strategy__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-lu88-game-strategy__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-resources-lu88-game-strategy__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-resources-lu88-game-strategy__text-content {
    flex: 1;
    font-size: 1.1em;
}

.page-resources-lu88-game-strategy__text-content p {
    margin-bottom: 20px;
    color: #333;
}

.page-resources-lu88-game-strategy__section--highlight .page-resources-lu88-game-strategy__description {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-resources-lu88-game-strategy__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-resources-lu88-game-strategy__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-resources-lu88-game-strategy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-lu88-game-strategy__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-resources-lu88-game-strategy__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-lu88-game-strategy__item-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-lu88-game-strategy__item-title::before {
    content: '✔️'; /* Checkmark icon */
    margin-right: 10px;
    color: #FFCC00;
}

.page-resources-lu88-game-strategy__grid-item p {
    font-size: 1em;
    color: #555;
}

.page-resources-lu88-game-strategy__game-strategy {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}

.page-resources-lu88-game-strategy__game-strategy:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-resources-lu88-game-strategy__game-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
}

.page-resources-lu88-game-strategy__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-lu88-game-strategy__list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #444;
}

.page-resources-lu88-game-strategy__list li::before {
    content: '•';
    color: #FFCC00;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -3px;
}

.page-resources-lu88-game-strategy__responsible-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.page-resources-lu88-game-strategy__responsible-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-resources-lu88-game-strategy__responsible-list li::before {
    content: '⚠️';
    color: #FFCC00;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-resources-lu88-game-strategy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-lu88-game-strategy__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-lu88-game-strategy__faq-question {
    font-size: 1.3em;
    color: #003366;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-lu88-game-strategy__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-resources-lu88-game-strategy__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-lu88-game-strategy__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fff;
}

.page-resources-lu88-game-strategy__faq-answer.open {
    max-height: 300px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-resources-lu88-game-strategy__faq-answer p {
    margin: 0;
    color: #555;
}

.page-resources-lu88-game-strategy__inline-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-lu88-game-strategy__inline-link:hover {
    color: #FFCC00;
}

.page-resources-lu88-game-strategy__cta-section {
    background: linear-gradient(135deg, #003366, #004d99);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.page-resources-lu88-game-strategy__cta-title {
    font-size: 2.8em;
    color: #FFCC00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-resources-lu88-game-strategy__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-lu88-game-strategy__hero-title {
        font-size: 2.5em;
    }
    .page-resources-lu88-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-lu88-game-strategy__content-wrapper {
        flex-direction: column;
    }
    .page-resources-lu88-game-strategy__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-resources-lu88-game-strategy__text-content, .page-resources-lu88-game-strategy__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-resources-lu88-game-strategy__image {
        margin-top: 20px;
    }
    .page-resources-lu88-game-strategy__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-lu88-game-strategy__hero {
        padding: 80px 0;
    }
    .page-resources-lu88-game-strategy__hero-title {
        font-size: 2em;
    }
    .page-resources-lu88-game-strategy__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-lu88-game-strategy__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-lu88-game-strategy__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-resources-lu88-game-strategy__section {
        padding: 40px 0;
    }
    .page-resources-lu88-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-lu88-game-strategy__item-title {
        font-size: 1.4em;
    }
    .page-resources-lu88-game-strategy__game-title {
        font-size: 1.8em;
    }
    .page-resources-lu88-game-strategy__cta-title {
        font-size: 2.2em;
    }
    .page-resources-lu88-game-strategy__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-lu88-game-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-resources-lu88-game-strategy__section-title {
        font-size: 1.6em;
    }
    .page-resources-lu88-game-strategy__btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    .page-resources-lu88-game-strategy__btn--secondary {
        margin-top: 0;
    }
    .page-resources-lu88-game-strategy__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-lu88-game-strategy__faq-answer {
        padding: 15px 20px;
    }
    .page-resources-lu88-game-strategy__cta-title {
        font-size: 1.8em;
    }
}