/* style/resources-understanding-slot-game-bonuses.css */
.page-resources-understanding-slot-game-bonuses {
    --primary-color: #FFD700;
    --secondary-color: #1A2A3A;
    --text-color-light: #F0F0F0;
    --text-color-dark: #1A2A3A;
    --bg-dark: #1A2A3A;
    --bg-light: #F8F8F8;
    --accent-color: #FFD700;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
}

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

.page-resources-understanding-slot-game-bonuses__hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #334a60 100%);
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-understanding-slot-game-bonuses__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1), transparent 70%);
    z-index: 0;
}

.page-resources-understanding-slot-game-bonuses__hero .page-resources-understanding-slot-game-bonuses__container {
    position: relative;
    z-index: 1;
}

.page-resources-understanding-slot-game-bonuses__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-understanding-slot-game-bonuses__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-resources-understanding-slot-game-bonuses__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-resources-understanding-slot-game-bonuses__btn--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-understanding-slot-game-bonuses__btn--primary:hover {
    background-color: #e6c200;
}

.page-resources-understanding-slot-game-bonuses__btn--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-understanding-slot-game-bonuses__btn--secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-understanding-slot-game-bonuses__intro,
.page-resources-understanding-slot-game-bonuses__content-section,
.page-resources-understanding-slot-game-bonuses__strategy,
.page-resources-understanding-slot-game-bonuses__faq,
.page-resources-understanding-slot-game-bonuses__related-articles {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-resources-understanding-slot-game-bonuses__intro p,
.page-resources-understanding-slot-game-bonuses__content-section p,
.page-resources-understanding-slot-game-bonuses__strategy p,
.page-resources-understanding-slot-game-bonuses__faq p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-color-dark);
}

.page-resources-understanding-slot-game-bonuses__subtitle {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-understanding-slot-game-bonuses__subtitle::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-resources-understanding-slot-game-bonuses__heading3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-understanding-slot-game-bonuses__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-understanding-slot-game-bonuses__bonus-type {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

.page-resources-understanding-slot-game-bonuses__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 15px;
    color: var(--text-color-dark);
}

.page-resources-understanding-slot-game-bonuses__list li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-resources-understanding-slot-game-bonuses__list li strong {
    color: var(--secondary-color);
}

.page-resources-understanding-slot-game-bonuses__strategy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-right: 5px solid var(--primary-color);
}

.page-resources-understanding-slot-game-bonuses__cta {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
}

.page-resources-understanding-slot-game-bonuses__cta .page-resources-understanding-slot-game-bonuses__subtitle {
    color: var(--primary-color);
}

.page-resources-understanding-slot-game-bonuses__cta .page-resources-understanding-slot-game-bonuses__subtitle::after {
    background-color: var(--primary-color);
}

.page-resources-understanding-slot-game-bonuses__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-color-light);
}

.page-resources-understanding-slot-game-bonuses__cta-buttons .page-resources-understanding-slot-game-bonuses__btn {
    margin: 0 15px;
}

.page-resources-understanding-slot-game-bonuses__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-resources-understanding-slot-game-bonuses__faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-resources-understanding-slot-game-bonuses__faq-item p {
    color: var(--text-color-dark);
}

.page-resources-understanding-slot-game-bonuses__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-understanding-slot-game-bonuses__article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-resources-understanding-slot-game-bonuses__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.page-resources-understanding-slot-game-bonuses__article-card h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    padding: 15px 20px 0;
}

.page-resources-understanding-slot-game-bonuses__article-card p {
    font-size: 0.95em;
    color: #555;
    padding: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-understanding-slot-game-bonuses__title {
        font-size: 2.5em;
    }

    .page-resources-understanding-slot-game-bonuses__subtitle {
        font-size: 2em;
    }

    .page-resources-understanding-slot-game-bonuses__heading3 {
        font-size: 1.4em;
    }

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

    .page-resources-understanding-slot-game-bonuses__cta-buttons .page-resources-understanding-slot-game-bonuses__btn {
        margin: 10px 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .page-resources-understanding-slot-game-bonuses__article-grid {
        grid-template-columns: 1fr;
    }
}

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

    .page-resources-understanding-slot-game-bonuses__description {
        font-size: 1em;
    }

    .page-resources-understanding-slot-game-bonuses__subtitle {
        font-size: 1.8em;
    }

    .page-resources-understanding-slot-game-bonuses__hero,
    .page-resources-understanding-slot-game-bonuses__cta {
        padding: 60px 0;
    }

    .page-resources-understanding-slot-game-bonuses__intro,
    .page-resources-understanding-slot-game-bonuses__content-section,
    .page-resources-understanding-slot-game-bonuses__strategy,
    .page-resources-understanding-slot-game-bonuses__faq,
    .page-resources-understanding-slot-game-bonuses__related-articles {
        padding: 40px 0;
    }

    .page-resources-understanding-slot-game-bonuses__bonus-type,
    .page-resources-understanding-slot-game-bonuses__strategy-item,
    .page-resources-understanding-slot-game-bonuses__faq-item {
        padding: 20px;
    }
}