/* style/resources-ww88-slot-game-selection.css */

/* Biến CSS */
:root {
    --page-primary-color: #1A2E44;
    --page-secondary-color: #FFD700;
    --page-text-dark: #1A2E44;
    --page-text-light: #FFFFFF;
    --page-background-light: #F8F8F8;
    --page-background-dark: #1A2E44;
    --page-accent-color: #FFD700;
}

.page-resources-ww88-slot-game-selection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-resources-ww88-slot-game-selection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-ww88-slot-game-selection__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #2A4460 50%, var(--page-accent-color) 100%);
    color: var(--page-text-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ww88-slot-game-selection__hero-content {
    z-index: 1;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-resources-ww88-slot-game-selection__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-ww88-slot-game-selection__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-ww88-slot-game-selection__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-ww88-slot-game-selection__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.2s ease;
    cursor: pointer;
    border: none;
}

.page-resources-ww88-slot-game-selection__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-text-dark); /* Đảm bảo độ tương phản */
}

.page-resources-ww88-slot-game-selection__btn--primary:hover {
    background-color: #E6B800;
    transform: translateY(-2px);
}

.page-resources-ww88-slot-game-selection__btn--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--page-text-light);
    border: 2px solid var(--page-text-light);
}

.page-resources-ww88-slot-game-selection__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-resources-ww88-slot-game-selection__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-ww88-slot-game-selection__hero-image {
    width: 80%; /* Adjust as needed */
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-resources-ww88-slot-game-selection__section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-resources-ww88-slot-game-selection__section:nth-of-type(even) {
    background-color: #F0F2F5; /* Slightly different background for visual break */
}

.page-resources-ww88-slot-game-selection__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-ww88-slot-game-selection__text {
    font-size: 1.1em;
    color: var(--page-text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-ww88-slot-game-selection__text--center {
    text-align: center;
}

/* Game Grid */
.page-resources-ww88-slot-game-selection__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-ww88-slot-game-selection__game-card {
    background-color: var(--page-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-ww88-slot-game-selection__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-ww88-slot-game-selection__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-ww88-slot-game-selection__game-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-ww88-slot-game-selection__game-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
}

.page-resources-ww88-slot-game-selection__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

/* Advantages Section */
.page-resources-ww88-slot-game-selection__advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-ww88-slot-game-selection__advantage-item {
    text-align: center;
    padding: 25px;
    background-color: var(--page-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-ww88-slot-game-selection__advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2)); /* Add a subtle shadow to icons */
}

.page-resources-ww88-slot-game-selection__advantage-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-ww88-slot-game-selection__advantage-description {
    font-size: 0.95em;
    color: #555;
}

/* Tips Section */
.page-resources-ww88-slot-game-selection__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-ww88-slot-game-selection__list li {
    background-color: var(--page-text-light);
    border-left: 5px solid var(--page-accent-color);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: var(--page-text-dark);
}

.page-resources-ww88-slot-game-selection__list li strong {
    color: var(--page-primary-color);
}

/* CTA Section */
.page-resources-ww88-slot-game-selection__cta {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-resources-ww88-slot-game-selection__cta .page-resources-ww88-slot-game-selection__section-title {
    color: var(--page-text-light);
}

.page-resources-ww88-slot-game-selection__cta .page-resources-ww88-slot-game-selection__text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-resources-ww88-slot-game-selection__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-ww88-slot-game-selection__text-link {
    color: var(--page-accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-ww88-slot-game-selection__text-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ww88-slot-game-selection__hero {
        padding: 60px 0;
    }

    .page-resources-ww88-slot-game-selection__hero-title {
        font-size: 2.5em;
    }

    .page-resources-ww88-slot-game-selection__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-ww88-slot-game-selection__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-ww88-slot-game-selection__hero-image {
        width: 90%;
    }

    .page-resources-ww88-slot-game-selection__section-title {
        font-size: 2em;
    }

    .page-resources-ww88-slot-game-selection__game-grid,
    .page-resources-ww88-slot-game-selection__advantage-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-ww88-slot-game-selection__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-ww88-slot-game-selection__hero-title {
        font-size: 2em;
    }

    .page-resources-ww88-slot-game-selection__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-ww88-slot-game-selection__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-ww88-slot-game-selection__section-title {
        font-size: 1.8em;
    }

    .page-resources-ww88-slot-game-selection__list li {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-resources-ww88-slot-game-selection__cta {
        padding: 60px 0;
    }
}