/* style/resources-online-entertainment-gambling-industry-trends.css */

.page-resources-online-entertainment-gambling-industry-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-resources-online-entertainment-gambling-industry-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-online-entertainment-gambling-industry-trends__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-resources-online-entertainment-gambling-industry-trends__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-resources-online-entertainment-gambling-industry-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-resources-online-entertainment-gambling-industry-trends__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-online-entertainment-gambling-industry-trends__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-online-entertainment-gambling-industry-trends__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-online-entertainment-gambling-industry-trends__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-resources-online-entertainment-gambling-industry-trends__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-resources-online-entertainment-gambling-industry-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-resources-online-entertainment-gambling-industry-trends__section:last-of-type {
    border-bottom: none;
}

.page-resources-online-entertainment-gambling-industry-trends__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-online-entertainment-gambling-industry-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-online-entertainment-gambling-industry-trends__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Tech Innovation Section Specifics */
.page-resources-online-entertainment-gambling-industry-trends__tech-innovation h3 {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-online-entertainment-gambling-industry-trends__image-left, 
.page-resources-online-entertainment-gambling-industry-trends__image-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-resources-online-entertainment-gambling-industry-trends__image-left .page-resources-online-entertainment-gambling-industry-trends__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-online-entertainment-gambling-industry-trends__image-left .page-resources-online-entertainment-gambling-industry-trends__text-content {
    flex: 2;
}

.page-resources-online-entertainment-gambling-industry-trends__image-right .page-resources-online-entertainment-gambling-industry-trends__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    order: 2; /* Image on right */
}

.page-resources-online-entertainment-gambling-industry-trends__image-right .page-resources-online-entertainment-gambling-industry-trends__text-content {
    flex: 2;
    order: 1; /* Text on left */
}

/* User Behavior Section Specifics */
.page-resources-online-entertainment-gambling-industry-trends__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-resources-online-entertainment-gambling-industry-trends__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-online-entertainment-gambling-industry-trends__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-online-entertainment-gambling-industry-trends__feature-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-resources-online-entertainment-gambling-industry-trends__feature-item p {
    color: #555;
    font-size: 1em;
}

/* Future OK9 Section Specifics */
.page-resources-online-entertainment-gambling-industry-trends__future-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-online-entertainment-gambling-industry-trends__future-list li {
    background-color: #e9f5ff; /* Light blue background for list items */
    border-left: 5px solid #003366;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-resources-online-entertainment-gambling-industry-trends__future-list li strong {
    color: #003366;
}

.page-resources-online-entertainment-gambling-industry-trends__call-to-action {
    text-align: center;
    margin-top: 50px;
}

.page-resources-online-entertainment-gambling-industry-trends__cta-button--secondary {
    background-color: #003366;
    color: #FFD700;
}

.page-resources-online-entertainment-gambling-industry-trends__cta-button--secondary:hover {
    background-color: #001a33;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-online-entertainment-gambling-industry-trends__hero-title {
        font-size: 2.8em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__section-title {
        font-size: 2em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__image-left,
    .page-resources-online-entertainment-gambling-industry-trends__image-right {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-online-entertainment-gambling-industry-trends__image-right .page-resources-online-entertainment-gambling-industry-trends__image {
        order: 1;
    }
    .page-resources-online-entertainment-gambling-industry-trends__image-right .page-resources-online-entertainment-gambling-industry-trends__text-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-resources-online-entertainment-gambling-industry-trends__hero-section {
        padding: 60px 0;
    }
    .page-resources-online-entertainment-gambling-industry-trends__hero-title {
        font-size: 2.2em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__hero-description {
        font-size: 1em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__section {
        padding: 40px 0;
    }
    .page-resources-online-entertainment-gambling-industry-trends__section-title {
        font-size: 1.8em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__text-content {
        font-size: 0.95em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-online-entertainment-gambling-industry-trends__hero-title {
        font-size: 1.8em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__section-title {
        font-size: 1.5em;
    }
    .page-resources-online-entertainment-gambling-industry-trends__tech-innovation h3,
    .page-resources-online-entertainment-gambling-industry-trends__feature-item h3 {
        font-size: 1.3em;
    }
}