/* style/resources-online-betting-safety.css */

/* CSS Variables */
:root {
    --primary-color: #002060; /* Deep Ocean Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-online-betting-safety {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: #ffffff; /* Explicitly white background for main content area */
}

.page-resources-online-betting-safety__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-online-betting-safety__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-online-betting-safety__section:nth-of-type(even) {
    background-color: var(--background-light);
}

.page-resources-online-betting-safety__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.page-resources-online-betting-safety__paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-online-betting-safety__list {
    list-style: disc;
    padding-left: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.page-resources-online-betting-safety__list li {
    margin-bottom: 10px;
    font-size: 17px;
}

/* Hero Section */
.page-resources-online-betting-safety__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, var(--primary-color), #003366); /* Dark blue gradient */
    color: var(--text-color-light);
    overflow: hidden; /* Prevent content overflow */
}

.page-resources-online-betting-safety__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-online-betting-safety__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 100%; /* Ensure image container doesn't overflow */
    box-sizing: border-box;
    overflow: hidden;
}

.page-resources-online-betting-safety__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-resources-online-betting-safety__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-safety__intro-text {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-color-light);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-online-betting-safety__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color); /* Gold button */
    color: var(--primary-color); /* Dark blue text on gold */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-resources-online-betting-safety__cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Grid for Tools & Features Section */
.page-resources-online-betting-safety__feature-grid,
.page-resources-online-betting-safety__help-grid,
.page-resources-online-betting-safety__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-online-betting-safety__feature-item,
.page-resources-online-betting-safety__help-item,
.page-resources-online-betting-safety__commitment-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-online-betting-safety__feature-item:hover,
.page-resources-online-betting-safety__help-item:hover,
.page-resources-online-betting-safety__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-online-betting-safety__feature-image,
.page-resources-online-betting-safety__help-image,
.page-resources-online-betting-safety__commitment-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure image doesn't overflow */
    box-sizing: border-box;
    overflow: hidden;
}
.page-resources-online-betting-safety__feature-image img,
.page-resources-online-betting-safety__help-image img,
.page-resources-online-betting-safety__commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}