/* style/resources-new-player-bonus-guide.css */

.page-resources-new-player-bonus-guide__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-resources-new-player-bonus-guide__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 36, 99, 0) 70%);
    animation: page-resources-new-player-bonus-guide__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-resources-new-player-bonus-guide__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-resources-new-player-bonus-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-resources-new-player-bonus-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-new-player-bonus-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
    line-height: 1.5;
}

.page-resources-new-player-bonus-guide__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-resources-new-player-bonus-guide__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 215, 0, 0.4);
}

.page-resources-new-player-bonus-guide__article-content {
    padding: 60px 0;
    background-color: #F8F9FA;
    color: #333333;
}

.page-resources-new-player-bonus-guide__article-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.page-resources-new-player-bonus-guide__main-article {
    flex: 3;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    font-size: 1.1em;
    max-width: 800px; /* Constrain content width for readability */
}

.page-resources-new-player-bonus-guide__table-of-contents {
    flex: 1;
    position: sticky;
    top: 100px; /* Adjust based on header height */
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.page-resources-new-player-bonus-guide__toc-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-new-player-bonus-guide__table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-new-player-bonus-guide__table-of-contents li {
    margin-bottom: 10px;
}

.page-resources-new-player-bonus-guide__table-of-contents a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
}

.page-resources-new-player-bonus-guide__table-of-contents a:hover,
.page-resources-new-player-bonus-guide__table-of-contents a.active {
    color: #0A2463;
    padding-left: 10px;
    border-left-color: #FFD700;
}

.page-resources-new-player-bonus-guide__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 15px;
}

.page-resources-new-player-bonus-guide__subsection-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-new-player-bonus-guide__main-article p {
    margin-bottom: 1em;
    color: #444444;
}

.page-resources-new-player-bonus-guide__main-article strong {
    color: #0A2463;
}

.page-resources-new-player-bonus-guide__highlight {
    color: #0A2463;
    font-weight: bold;
}

.page-resources-new-player-bonus-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: #444444;
}

.page-resources-new-player-bonus-guide__list li {
    margin-bottom: 0.5em;
}

.page-resources-new-player-bonus-guide__quote {
    background-color: #FFFBE6;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555555;
    border-radius: 5px;
}

.page-resources-new-player-bonus-guide__quote p {
    margin: 0;
}

.page-resources-new-player-bonus-guide__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-new-player-bonus-guide__image-caption {
    text-align: center;
    font-size: 0.9em;
    color: #666666;
    margin-top: 10px;
}

.page-resources-new-player-bonus-guide__link-in-text {
    color: #0A2463;
    text-decoration: underline;
    font-weight: 600;
}

.page-resources-new-player-bonus-guide__link-in-text:hover {
    color: #FFD700;
    text-decoration: none;
}

.page-resources-new-player-bonus-guide__cta-button--inline {
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-resources-new-player-bonus-guide__responsible-gambling {
    font-style: italic;
    color: #888888;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #DDDDDD;
}

.page-resources-new-player-bonus-guide__bottom-cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-resources-new-player-bonus-guide__related-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #EEEEEE;
    text-align: center;
}

.page-resources-new-player-bonus-guide__back-link {
    display: inline-block;
    margin: 0 15px;
    color: #0A2463;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-resources-new-player-bonus-guide__back-link:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-new-player-bonus-guide__article-wrapper {
        flex-direction: column;
    }

    .page-resources-new-player-bonus-guide__table-of-contents {
        position: static;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .page-resources-new-player-bonus-guide__main-article {
        padding: 30px;
    }

    .page-resources-new-player-bonus-guide__hero-title {
        font-size: 2.8em;
    }

    .page-resources-new-player-bonus-guide__hero-subtitle {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-resources-new-player-bonus-guide__hero-section {
        padding: 60px 15px;
    }

    .page-resources-new-player-bonus-guide__hero-title {
        font-size: 2.2em;
    }

    .page-resources-new-player-bonus-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-new-player-bonus-guide__article-content {
        padding: 40px 0;
    }

    .page-resources-new-player-bonus-guide__main-article {
        padding: 20px;
        font-size: 1em;
    }

    .page-resources-new-player-bonus-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-new-player-bonus-guide__subsection-title {
        font-size: 1.4em;
    }

    .page-resources-new-player-bonus-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-new-player-bonus-guide__hero-title {
        font-size: 1.8em;
    }

    .page-resources-new-player-bonus-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-new-player-bonus-guide__main-article {
        padding: 15px;
    }

    .page-resources-new-player-bonus-guide__section-title {
        font-size: 1.6em;
    }

    .page-resources-new-player-bonus-guide__subsection-title {
        font-size: 1.2em;
    }

    .page-resources-new-player-bonus-guide__table-of-contents {
        padding: 15px;
    }

    .page-resources-new-player-bonus-guide__toc-title {
        font-size: 1.4em;
    }

    .page-resources-new-player-bonus-guide__table-of-contents a {
        font-size: 0.95em;
    }
    .page-resources-new-player-bonus-guide__related-links {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-new-player-bonus-guide__back-link {
        margin: 10px 0;
    }
}