/* style/industry-insights-emerging-models.css */

:root {
    --e2bet-primary-color: #0A1931;
    --e2bet-accent-color: #FFD700;
    --e2bet-text-light: #F8F8F8;
    --e2bet-text-dark: #1A1A1A;
    --e2bet-background-dark: #050E1C;
    --e2bet-background-light: #E0E0E0;
    --e2bet-red-highlight: #DC143C;
}

.page-industry-insights-emerging-models {
    font-family: 'Arial', sans-serif;
    color: var(--e2bet-text-light);
    background-color: var(--e2bet-background-dark);
    line-height: 1.6;
}

.page-industry-insights-emerging-models__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-industry-insights-emerging-models__hero-section {
    background: linear-gradient(135deg, var(--e2bet-primary-color) 0%, #1a2a47 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--e2bet-text-light);
    position: relative;
    overflow: hidden;
}

.page-industry-insights-emerging-models__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0.5;
}

.page-industry-insights-emerging-models__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--e2bet-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-insights-emerging-models__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.page-industry-insights-emerging-models__cta-button {
    display: inline-block;
    background-color: var(--e2bet-accent-color);
    color: var(--e2bet-primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    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-industry-insights-emerging-models__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-insights-emerging-models__cta-button--primary {
    background-color: var(--e2bet-accent-color);
    color: var(--e2bet-primary-color);
}

.page-industry-insights-emerging-models__cta-button--secondary {
    background-color: var(--e2bet-primary-color);
    color: var(--e2bet-accent-color);
    border: 1px solid var(--e2bet-accent-color);
    margin-left: 20px;
}

.page-industry-insights-emerging-models__cta-button--secondary:hover {
    background-color: #1a2a47;
    color: var(--e2bet-accent-color);
    transform: translateY(-3px);
}

.page-industry-insights-emerging-models__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-industry-insights-emerging-models__content-section {
    padding: 60px 0;
    background-color: var(--e2bet-primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-industry-insights-emerging-models__section-intro {
    background-color: var(--e2bet-background-dark);
}

.page-industry-insights-emerging-models__section-title {
    font-size: 2.5em;
    color: var(--e2bet-text-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-insights-emerging-models__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--e2bet-accent-color);
    border-radius: 2px;
}

.page-industry-insights-emerging-models__highlight {
    color: var(--e2bet-accent-color);
}

.page-industry-insights-emerging-models__strong-text {
    color: var(--e2bet-accent-color);
    font-weight: bold;
}

.page-industry-insights-emerging-models__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-emerging-models__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-insights-emerging-models__feature-card {
    background-color: #1a2a47;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-insights-emerging-models__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-insights-emerging-models__card-title {
    font-size: 1.8em;
    color: var(--e2bet-accent-color);
    margin-bottom: 15px;
}

.page-industry-insights-emerging-models__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-industry-insights-emerging-models__feature-card p {
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-industry-insights-emerging-models__card-button {
    display: inline-block;
    background-color: var(--e2bet-red-highlight);
    color: var(--e2bet-text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-industry-insights-emerging-models__card-button:hover {
    background-color: #a0102d;
}

.page-industry-insights-emerging-models__list-benefits,
.page-industry-insights-emerging-models__list-advantages {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-industry-insights-emerging-models__list-benefits li,
.page-industry-insights-emerging-models__list-advantages li {
    background-color: #1a2a47;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-insights-emerging-models__list-benefits li strong,
.page-industry-insights-emerging-models__list-advantages li strong {
    color: var(--e2bet-accent-color);
    margin-right: 10px;
    font-size: 1.1em;
}

.page-industry-insights-emerging-models__list-benefits li::before,
.page-industry-insights-emerging-models__list-advantages li::before {
    content: '✓';
    color: var(--e2bet-accent-color);
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-industry-insights-emerging-models__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-industry-insights-emerging-models__accordion {
    margin-top: 40px;
}

.page-industry-insights-emerging-models__accordion-item {
    background-color: #1a2a47;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-industry-insights-emerging-models__accordion-header {
    background-color: var(--e2bet-primary-color);
    color: var(--e2bet-accent-color);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-industry-insights-emerging-models__accordion-header:hover {
    background-color: #1a2a47;
}

.page-industry-insights-emerging-models__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-industry-insights-emerging-models__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-industry-insights-emerging-models__accordion-content {
    padding: 0 25px;
    background-color: #1a2a47;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.page-industry-insights-emerging-models__accordion-content p {
    padding-bottom: 20px;
    margin: 0;
}

.page-industry-insights-emerging-models__inline-link {
    color: var(--e2bet-accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-industry-insights-emerging-models__inline-link:hover {
    color: #e6c200;
}

.page-industry-insights-emerging-models__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-emerging-models__main-title {
        font-size: 2.8em;
    }
    .page-industry-insights-emerging-models__subtitle {
        font-size: 1.1em;
    }
    .page-industry-insights-emerging-models__section-title {
        font-size: 2em;
    }
    .page-industry-insights-emerging-models__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-industry-insights-emerging-models__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-industry-insights-emerging-models__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-industry-insights-emerging-models__hero-section {
        padding: 80px 0;
    }
    .page-industry-insights-emerging-models__main-title {
        font-size: 2.2em;
    }
    .page-industry-insights-emerging-models__subtitle {
        font-size: 1em;
    }
    .page-industry-insights-emerging-models__section-title {
        font-size: 1.8em;
    }
    .page-industry-insights-emerging-models__content-section {
        padding: 40px 0;
    }
    .page-industry-insights-emerging-models__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-insights-emerging-models__cta-button {
        width: 80%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-industry-insights-emerging-models__cta-button + .page-industry-insights-emerging-models__cta-button {
        margin-top: 15px;
    }
    .page-industry-insights-emerging-models__list-benefits li,
    .page-industry-insights-emerging-models__list-advantages li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .page-industry-insights-emerging-models__list-benefits li strong,
    .page-industry-insights-emerging-models__list-advantages li strong {
        margin-bottom: 5px;
    }
    .page-industry-insights-emerging-models__list-benefits li::before,
    .page-industry-insights-emerging-models__list-advantages li::before {
        align-self: flex-start;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-emerging-models__main-title {
        font-size: 1.8em;
    }
    .page-industry-insights-emerging-models__subtitle {
        font-size: 0.9em;
    }
    .page-industry-insights-emerging-models__section-title {
        font-size: 1.5em;
    }
    .page-industry-insights-emerging-models__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-industry-insights-emerging-models__card-title {
        font-size: 1.5em;
    }
    .page-industry-insights-emerging-models__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}