/* style/resources-how-to-choose-win8bet.css */
.page-resources-how-to-choose-win8bet {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for text on dark background */
}

.page-resources-how-to-choose-win8bet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-how-to-choose-win8bet__hero-section {
    background: linear-gradient(135deg, #1A2B3C, #0A1C2C);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
}

.page-resources-how-to-choose-win8bet__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-how-to-choose-win8bet__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-resources-how-to-choose-win8bet__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
}

.page-resources-how-to-choose-win8bet__btn--primary {
    background-color: #FFD700;
    color: #1A2B3C;
}

.page-resources-how-to-choose-win8bet__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-how-to-choose-win8bet__btn--secondary {
    background-color: #1A2B3C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-how-to-choose-win8bet__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-resources-how-to-choose-win8bet__content-section {
    padding: 80px 0;
}

.page-resources-how-to-choose-win8bet__bg--dark {
    background-color: #1A2B3C;
    color: #E0E0E0;
}

.page-resources-how-to-choose-win8bet__bg--light {
    background-color: #2D3E50; /* Slightly lighter dark for contrast */
    color: #E0E0E0;
}

.page-resources-how-to-choose-win8bet__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-choose-win8bet__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-how-to-choose-win8bet__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-how-to-choose-win8bet__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-how-to-choose-win8bet__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-how-to-choose-win8bet__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-win8bet__feature-item {
    background-color: #2D3E50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-resources-how-to-choose-win8bet__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-how-to-choose-win8bet__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-how-to-choose-win8bet__feature-item p {
    font-size: 1em;
    color: #C0C0C0;
}

.page-resources-how-to-choose-win8bet__cta-block {
    background-color: #0A1C2C;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-win8bet__cta-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 500;
}

.page-resources-how-to-choose-win8bet__list,
.page-resources-how-to-choose-win8bet__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-how-to-choose-win8bet__ordered-list {
    list-style-type: decimal;
}

.page-resources-how-to-choose-win8bet__list li,
.page-resources-how-to-choose-win8bet__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-how-to-choose-win8bet__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-how-to-choose-win8bet__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-resources-how-to-choose-win8bet__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-how-to-choose-win8bet__conclusion-section {
    background-color: #0A1C2C;
    padding: 80px 0;
    text-align: center;
    color: #E0E0E0;
}

.page-resources-how-to-choose-win8bet__faq-section {
    padding: 60px 0;
}

.page-resources-how-to-choose-win8bet__faq-item {
    background-color: #1A2B3C;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-win8bet__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-resources-how-to-choose-win8bet__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
}

.page-resources-how-to-choose-win8bet__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-resources-how-to-choose-win8bet__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-how-to-choose-win8bet__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-choose-win8bet__section-title {
        font-size: 2em;
    }
    .page-resources-how-to-choose-win8bet__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-win8bet__hero-section {
        padding: 80px 0;
    }
    .page-resources-how-to-choose-win8bet__hero-title {
        font-size: 2.2em;
    }
    .page-resources-how-to-choose-win8bet__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-how-to-choose-win8bet__section-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-choose-win8bet__feature-item {
        padding: 20px;
    }
    .page-resources-how-to-choose-win8bet__cta-group {
        flex-direction: column;
    }
    .page-resources-how-to-choose-win8bet__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-choose-win8bet__hero-section {
        padding: 60px 0;
    }
    .page-resources-how-to-choose-win8bet__hero-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-choose-win8bet__section-title {
        font-size: 1.6em;
    }
    .page-resources-how-to-choose-win8bet__text-block, 
    .page-resources-how-to-choose-win8bet__list li, 
    .page-resources-how-to-choose-win8bet__ordered-list li, 
    .page-resources-how-to-choose-win8bet__faq-answer {
        font-size: 0.95em;
    }
    .page-resources-how-to-choose-win8bet__faq-question {
        font-size: 1.1em;
    }
    .page-resources-how-to-choose-win8bet__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}