:root {
    --primary-color: #1A202C; /* Deep Blue/Charcoal */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #E53E3E; /* Red */
    --text-color-light: #F7FAFC; /* Light gray for dark backgrounds */
    --text-color-dark: #2D3748; /* Dark gray for light backgrounds */
    --background-light: #F7FAFC; /* Very light gray */
    --background-dark: #2D3748; /* Dark background for sections */
    --border-color: #E2E8F0; /* Light border */
}

/* Base styles for the entire page content area */
.page-resources-2024-gambling-game-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.page-resources-2024-gambling-game-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-resources-2024-gambling-game-trends__hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color); /* Fallback */
    color: var(--text-color-light);
}

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

.page-resources-2024-gambling-game-trends__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit height for hero image */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-2024-gambling-game-trends__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(26, 32, 44, 0.7); /* Semi-transparent overlay */
    border-radius: 10px;
}

.page-resources-2024-gambling-game-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-2024-gambling-game-trends__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-resources-2024-gambling-game-trends__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color); /* Red button */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(229, 62, 62, 0.4);
}

.page-resources-2024-gambling-game-trends__cta-button:hover {
    background: #c73636; /* Darker red on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.6);
}

/* General Section Styles */
.page-resources-2024-gambling-game-trends__section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-resources-2024-gambling-game-trends__section:last-of-type {
    border-bottom: none;
}

.page-resources-2024-gambling-game-trends__section:nth-child(odd) {
    background-color: var(--background-light);
}

.page-resources-2024-gambling-game-trends__section:nth-child(even) {
    background-color: #F0F4F8; /* Slightly darker light background */
}

.page-resources-2024-gambling-game-trends__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

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

.page-resources-2024-gambling-game-trends__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-resources-2024-gambling-game-trends__container p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: left;
    color: var(--text-color-dark);
}

.page-resources-2024-gambling-game-trends__image-full {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-2024-gambling-game-trends__cta-button-small {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color); /* Gold button */
    color: var(--primary-color); /* Dark text for gold button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-resources-2024-gambling-game-trends__cta-button-small:hover {
    background: #e0bf00; /* Darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.page-resources-2024-gambling-game-trends__faq {
    background-color: var(--background-dark); /* Dark background for FAQ */
    color: var(--text-color-light);
}

.page-resources-2024-gambling-game-trends__faq .page-resources-2024-gambling-game-trends__section-title {
    color: var(--secondary-color); /* Gold title on dark background */
}

.page-resources-2024-gambling-game-trends__faq .page-resources-2024-gambling-game-trends__section-title::after {
    background-color: var(--accent-color);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color); /* Dark primary color for question background */
    color: var(--text-color-light);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: #2A3240; /* Slightly lighter primary on hover */
}
}