/* style/betting-news-insights-tech-trends.css */

.page-betting-news-insights-tech-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-betting-news-insights-tech-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-news-insights-tech-trends__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-betting-news-insights-tech-trends__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-betting-news-insights-tech-trends__pulse 15s infinite alternate;
}

@keyframes page-betting-news-insights-tech-trends__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-betting-news-insights-tech-trends__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-news-insights-tech-trends__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-betting-news-insights-tech-trends__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-betting-news-insights-tech-trends__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #000; /* High contrast with yellow */
    border: 2px solid #ffc107;
}

.page-betting-news-insights-tech-trends__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-betting-news-insights-tech-trends__btn--secondary {
    background-color: #007bff; /* Main color */
    color: #fff; /* High contrast with blue */
    border: 2px solid #007bff;
}

.page-betting-news-insights-tech-trends__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-betting-news-insights-tech-trends__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-betting-news-insights-tech-trends__section {
    padding: 60px 0;
}

.page-betting-news-insights-tech-trends__section--alt-bg {
    background-color: #f0f4f7;
}

.page-betting-news-insights-tech-trends__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-news-insights-tech-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-betting-news-insights-tech-trends__section-title--light {
    color: #fff;
}

.page-betting-news-insights-tech-trends__section-title--light::after {
    background-color: #fff;
}

.page-betting-news-insights-tech-trends__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-betting-news-insights-tech-trends__content-row--reverse {
    flex-direction: row-reverse;
}

.page-betting-news-insights-tech-trends__text-content {
    flex: 2;
    min-width: 300px;
}

.page-betting-news-insights-tech-trends__text-content h3 {
    font-size: 1.5em;
    color: #0056b3; /* Darker shade of main color for subheadings */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-betting-news-insights-tech-trends__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-betting-news-insights-tech-trends__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-betting-news-insights-tech-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-betting-news-insights-tech-trends__section--cta {
    background: linear-gradient(90deg, #007bff, #0056b3);
    text-align: center;
    color: #fff;
    padding: 80px 0;
}

.page-betting-news-insights-tech-trends__text--light {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-news-insights-tech-trends__title {
        font-size: 2em;
    }

    .page-betting-news-insights-tech-trends__subtitle {
        font-size: 1em;
    }

    .page-betting-news-insights-tech-trends__section-title {
        font-size: 1.8em;
    }

    .page-betting-news-insights-tech-trends__content-row,
    .page-betting-news-insights-tech-trends__content-row--reverse {
        flex-direction: column;
    }

    .page-betting-news-insights-tech-trends__text-content,
    .page-betting-news-insights-tech-trends__image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-betting-news-insights-tech-trends__hero,
    .page-betting-news-insights-tech-trends__section,
    .page-betting-news-insights-tech-trends__section--cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-betting-news-insights-tech-trends__title {
        font-size: 1.6em;
    }

    .page-betting-news-insights-tech-trends__subtitle {
        font-size: 0.9em;
    }

    .page-betting-news-insights-tech-trends__section-title {
        font-size: 1.5em;
    }

    .page-betting-news-insights-tech-trends__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-betting-news-insights-tech-trends__btn--large {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-betting-news-insights-tech-trends__text-content h3 {
        font-size: 1.3em;
    }
}