/* style/responsible-gaming.css */

/* General page container for responsive design */
.page-responsible-gaming__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-responsible-gaming__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3a4192 100%); /* Dark indigo gradient */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gaming__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-responsible-gaming__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #F0F0F0; /* Slightly off-white for body text */
}

.page-responsible-gaming__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* General Section Styling */
.page-responsible-gaming__section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for main content */
    color: #333333; /* Dark text for contrast */
    border-bottom: 1px solid #eeeeee;
}

.page-responsible-gaming__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-responsible-gaming__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gaming__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent under titles */
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-responsible-gaming__section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444444;
}

/* Tool Grid Section */
.page-responsible-gaming__tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gaming__tool-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gaming__tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming__tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-responsible-gaming__tool-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

/* Buttons */
.page-responsible-gaming__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1A237E; /* Dark indigo text on gold */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-responsible-gaming__button:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    color: #000000; /* Black text on hover for stronger contrast */
    transform: translateY(-2px);
}

.page-responsible-gaming__button--primary {
    background-color: #1A237E; /* Dark indigo button background */
    color: #FFD700; /* Gold text on dark indigo */
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-responsible-gaming__button--primary:hover {
    background-color: #0d1257; /* Darker indigo on hover */
    color: #FFFFFF; /* White text on hover */
}

.page-responsible-gaming__button--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.page-responsible-gaming__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Full Width Image */
.page-responsible-gaming__image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* List Styling */
.page-responsible-gaming__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-responsible-gaming__list li {
    background-color: #ffffff;
    border-left: 5px solid #FFD700; /* Gold accent */
    margin-bottom: 15px;
    padding: 15px 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-responsible-gaming__list li strong {
    color: #1A237E;
}

/* Detail Page List */
.page-responsible-gaming__detail-page-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-responsible-gaming__detail-page-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gaming__detail-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming__detail-page-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-responsible-gaming__detail-page-title a {
    color: #1A237E;
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gaming__detail-page-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-responsible-gaming__detail-page-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Call to Action Section */
.page-responsible-gaming__cta {
    background-color: #1A237E; /* Primary color background */
    color: #FFFFFF; /* White text for contrast */
    padding: 70px 0;
    text-align: center;
}

.page-responsible-gaming__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
}

.page-responsible-gaming__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #F0F0F0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-responsible-gaming__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gaming__hero-description {
        font-size: 1em;
    }

    .page-responsible-gaming__section-title {
        font-size: 2em;
    }

    .page-responsible-gaming__section p {
        font-size: 1em;
    }

    .page-responsible-gaming__tool-grid,
    .page-responsible-gaming__detail-page-list {
        grid-template-columns: 1fr;
    }

    .page-responsible-gaming__cta-title {
        font-size: 2em;
    }

    .page-responsible-gaming__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming__hero {
        padding: 50px 0;
    }
    .page-responsible-gaming__hero-title {
        font-size: 2em;
    }
    .page-responsible-gaming__section {
        padding: 40px 0;
    }
    .page-responsible-gaming__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gaming__tool-item,
    .page-responsible-gaming__detail-page-item {
        padding: 20px;
    }
    .page-responsible-gaming__button {
        width: 100%;
        box-sizing: border-box;
    }
}