/* style/resources-online-gambling-beginner-tips.css */

:root {
    --page-primary-color: #0A1931;
    --page-secondary-color: #FFD700;
    --page-text-color: #333333;
    --page-light-text-color: #ffffff;
    --page-background-color: #f8f9fa;
    --page-dark-background-color: #1a2a44;
    --page-accent-gold-dark: #b39700;
}

.page-resources-online-gambling-beginner-tips {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-color);
    line-height: 1.6;
    background-color: var(--page-background-color);
}

.page-resources-online-gambling-beginner-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-online-gambling-beginner-tips__section {
    padding: 60px 0;
    background-color: var(--page-background-color);
}

.page-resources-online-gambling-beginner-tips__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly different background for contrast */
}

.page-resources-online-gambling-beginner-tips__hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--page-light-text-color);
}

.page-resources-online-gambling-beginner-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-online-gambling-beginner-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 49, 0.7), rgba(0, 0, 0, 0.5)); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-online-gambling-beginner-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-resources-online-gambling-beginner-tips__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--page-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-gambling-beginner-tips__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-light-text-color);
}

.page-resources-online-gambling-beginner-tips__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-online-gambling-beginner-tips__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-online-gambling-beginner-tips__btn--primary:hover {
    background-color: var(--page-accent-gold-dark);
    color: var(--page-light-text-color);
    transform: translateY(-2px);
}

.page-resources-online-gambling-beginner-tips__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-resources-online-gambling-beginner-tips__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-2px);
}

.page-resources-online-gambling-beginner-tips__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-online-gambling-beginner-tips__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-secondary-color);
    border-radius: 2px;
}

.page-resources-online-gambling-beginner-tips__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-text-color);
}

.page-resources-online-gambling-beginner-tips__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.page-resources-online-gambling-beginner-tips__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-resources-online-gambling-beginner-tips__text-content {
    flex: 1;
}

.page-resources-online-gambling-beginner-tips__image-wrapper {
    flex: 1;
    text-align: center;
}

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

.page-resources-online-gambling-beginner-tips__item-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-online-gambling-beginner-tips__introduction p,
.page-resources-online-gambling-beginner-tips__responsible-gambling p,
.page-resources-online-gambling-beginner-tips__conclusion p {
    margin-bottom: 15px;
    color: var(--page-text-color);
}

.page-resources-online-gambling-beginner-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-online-gambling-beginner-tips__grid-item {
    background-color: var(--page-light-text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-resources-online-gambling-beginner-tips__grid-item:hover {
    transform: translateY(-5px);
}

.page-resources-online-gambling-beginner-tips__grid-item .page-resources-online-gambling-beginner-tips__item-title {
    font-size: 1.5em;
    margin-top: 0;
    color: var(--page-secondary-color);
}

.page-resources-online-gambling-beginner-tips__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-online-gambling-beginner-tips__list li {
    background-color: var(--page-light-text-color);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid var(--page-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--page-text-color);
}

.page-resources-online-gambling-beginner-tips__list li strong {
    color: var(--page-primary-color);
}

.page-resources-online-gambling-beginner-tips__cta-banner {
    position: relative;
    background-color: var(--page-primary-color);
    color: var(--page-light-text-color);
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-online-gambling-beginner-tips__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-resources-online-gambling-beginner-tips__cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-resources-online-gambling-beginner-tips__cta-title {
    font-size: 2.8em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
}

.page-resources-online-gambling-beginner-tips__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-light-text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-online-gambling-beginner-tips__hero-title {
        font-size: 2.5em;
    }
    .page-resources-online-gambling-beginner-tips__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-online-gambling-beginner-tips__section-title {
        font-size: 2em;
    }
    .page-resources-online-gambling-beginner-tips__content-wrapper {
        flex-direction: column;
    }
    .page-resources-online-gambling-beginner-tips__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-resources-online-gambling-beginner-tips__image-wrapper {
        margin-top: 30px;
    }
    .page-resources-online-gambling-beginner-tips__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-online-gambling-beginner-tips__cta-title {
        font-size: 2.2em;
    }
    .page-resources-online-gambling-beginner-tips__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-online-gambling-beginner-tips__hero {
        height: 400px;
    }
    .page-resources-online-gambling-beginner-tips__hero-title {
        font-size: 2em;
    }
    .page-resources-online-gambling-beginner-tips__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-online-gambling-beginner-tips__section {
        padding: 40px 0;
    }
    .page-resources-online-gambling-beginner-tips__section-title {
        font-size: 1.8em;
    }
    .page-resources-online-gambling-beginner-tips__item-title {
        font-size: 1.4em;
    }
    .page-resources-online-gambling-beginner-tips__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-resources-online-gambling-beginner-tips__hero {
        height: 350px;
    }
    .page-resources-online-gambling-beginner-tips__hero-title {
        font-size: 1.8em;
    }
    .page-resources-online-gambling-beginner-tips__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-online-gambling-beginner-tips__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources-online-gambling-beginner-tips__section-title {
        font-size: 1.5em;
    }
    .page-resources-online-gambling-beginner-tips__section-description {
        font-size: 0.9em;
    }
    .page-resources-online-gambling-beginner-tips__item-title {
        font-size: 1.2em;
    }
    .page-resources-online-gambling-beginner-tips__list li {
        font-size: 0.95em;
        padding: 15px 20px;
    }
    .page-resources-online-gambling-beginner-tips__cta-banner {
        padding: 30px;
    }
    .page-resources-online-gambling-beginner-tips__cta-title {
        font-size: 1.5em;
    }
    .page-resources-online-gambling-beginner-tips__cta-text {
        font-size: 0.95em;
    }
}