/* style/resources-understanding-online-betting-risks.css */
.page-resources-understanding-online-betting-risks {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for body text for high contrast */
    background-color: #f8f8f8; /* Light background */
}

.page-resources-understanding-online-betting-risks__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-understanding-online-betting-risks__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%);
    color: #FFFFFF; /* White text on gradient background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-understanding-online-betting-risks__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-resources-understanding-online-betting-risks__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333333; /* Darker title for better contrast on the gradient */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-resources-understanding-online-betting-risks__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #333333; /* Darker subtitle for better contrast */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-resources-understanding-online-betting-risks__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 1;
}

.page-resources-understanding-online-betting-risks__section {
    padding: 60px 0;
}

.page-resources-understanding-online-betting-risks__section--intro {
    background-color: #ffffff;
}

.page-resources-understanding-online-betting-risks__section--risks {
    background-color: #e0f2f7; /* Light blue background */
}

.page-resources-understanding-online-betting-risks__section--control-tools {
    background-color: #fcf8e3; /* Light golden background */
    position: relative;
    overflow: hidden;
}

.page-resources-understanding-online-betting-risks__section--tips {
    background-color: #ffffff;
}

.page-resources-understanding-online-betting-risks__section--commitment {
    background-color: #e0f2f7;
    position: relative;
    overflow: hidden;
}

.page-resources-understanding-online-betting-risks__section-title {
    font-size: 2.5em;
    color: #0086b3; /* Darker blue for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-understanding-online-betting-risks__section-title strong {
    color: #b39700; /* Darker gold for emphasis */
}

.page-resources-understanding-online-betting-risks p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}

.page-resources-understanding-online-betting-risks strong {
    font-weight: bold;
    color: #005f80; /* Stronger blue for emphasized text */
}

.page-resources-understanding-online-betting-risks__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-resources-understanding-online-betting-risks__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #333333; /* Dark text on gold */
}

.page-resources-understanding-online-betting-risks__btn--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-understanding-online-betting-risks__btn--secondary {
    background-color: #00BFFF; /* Blue button */
    color: #FFFFFF; /* White text on blue */
    margin-right: 15px;
}

.page-resources-understanding-online-betting-risks__btn--secondary:hover {
    background-color: #0099cc; /* Darker blue on hover */
    transform: translateY(-2px);
}

.page-resources-understanding-online-betting-risks__btn--tertiary {
    background-color: #666666; /* Grey button */
    color: #FFFFFF; /* White text on grey */
}

.page-resources-understanding-online-betting-risks__btn--tertiary:hover {
    background-color: #444444; /* Darker grey on hover */
    transform: translateY(-2px);
}

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

.page-resources-understanding-online-betting-risks__risk-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-resources-understanding-online-betting-risks__risk-item:hover {
    transform: translateY(-10px);
}

.page-resources-understanding-online-betting-risks__risk-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-understanding-online-betting-risks__risk-title {
    font-size: 1.5em;
    color: #b39700; /* Darker gold for risk titles */
    margin-bottom: 15px;
}

.page-resources-understanding-online-betting-risks__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-understanding-online-betting-risks__feature-list li {
    background-color: #ffffff;
    border-left: 5px solid #00BFFF; /* Blue accent */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-understanding-online-betting-risks__feature-title {
    font-size: 1.3em;
    color: #005f80; /* Darker blue for feature titles */
    margin-bottom: 10px;
}

.page-resources-understanding-online-betting-risks__illustration-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-understanding-online-betting-risks__section--control-tools .page-resources-understanding-online-betting-risks__illustration-img {
    max-width: 800px;
}

.page-resources-understanding-online-betting-risks__section--commitment .page-resources-understanding-online-betting-risks__illustration-img {
    max-width: 800px;
}

.page-resources-understanding-online-betting-risks__tip-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
}

.page-resources-understanding-online-betting-risks__tip-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444444; /* Slightly lighter text for list items */
}

.page-resources-understanding-online-betting-risks__tip-list li strong {
    color: #0086b3; /* Darker blue for emphasis in list */
}

.page-resources-understanding-online-betting-risks__cta-group {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-understanding-online-betting-risks__hero-title {
        font-size: 2.8em;
    }
    .page-resources-understanding-online-betting-risks__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-understanding-online-betting-risks__hero-title {
        font-size: 2.2em;
    }
    .page-resources-understanding-online-betting-risks__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-understanding-online-betting-risks__section-title {
        font-size: 1.8em;
    }
    .page-resources-understanding-online-betting-risks__risk-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-understanding-online-betting-risks__feature-list {
        grid-template-columns: 1fr;
    }
    .page-resources-understanding-online-betting-risks__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-resources-understanding-online-betting-risks__cta-group .page-resources-understanding-online-betting-risks__btn {
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .page-resources-understanding-online-betting-risks__hero-title {
        font-size: 1.8em;
    }
    .page-resources-understanding-online-betting-risks__section-title {
        font-size: 1.5em;
    }
    .page-resources-understanding-online-betting-risks p, .page-resources-understanding-online-betting-risks__tip-list li {
        font-size: 0.95em;
    }
    .page-resources-understanding-online-betting-risks__hero-section {
        padding: 60px 15px;
    }
    .page-resources-understanding-online-betting-risks__section {
        padding: 40px 0;
    }
    .page-resources-understanding-online-betting-risks__risk-item, .page-resources-understanding-online-betting-risks__feature-list li {
        padding: 20px;
    }
}