/* style/index-latest-events-match-previews.css */
.page-index-latest-events-match-previews {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-latest-events-match-previews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-latest-events-match-reviews .highlight {
  color: #0A2463; /* Dark blue for emphasis on light background */
  font-weight: bold;
}

.page-index-latest-events-match-previews .hero-section {
    background: linear-gradient(135deg, #0A2463, #2a4a90);
    color: #FFFFFF;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-events-match-previews .hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.2;
}

.page-index-latest-events-match-previews .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-index-latest-events-match-previews .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index-latest-events-match-previews .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-index-latest-events-match-previews .hero-description .highlight {
  color: #FFD700; /* Gold for emphasis on dark background */
}

.page-index-latest-events-match-previews .hero-actions .btn {
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.page-index-latest-events-match-previews .btn-primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-index-latest-events-match-previews .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-latest-events-match-previews .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-latest-events-match-previews .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-index-latest-events-match-previews .section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-events-match-previews .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-latest-events-match-previews .section-intro, .page-index-latest-events-match-previews .section-outro {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.page-index-latest-events-match-previews .promotions-section, .page-index-latest-events-match-previews .events-section, .page-index-latest-events-match-previews .casino-events-section, .page-index-latest-events-match-previews .why-choose-us-section, .page-index-latest-events-match-previews .responsible-gambling-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-index-latest-events-match-previews .promotions-section {
  background-color: #fcfcfc;
}

.page-index-latest-events-match-previews .promo-grid, .page-index-latest-events-match-previews .casino-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-events-match-previews .promo-card, .page-index-latest-events-match-previews .casino-event-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-events-match-previews .promo-card:hover, .page-index-latest-events-match-previews .casino-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.page-index-latest-events-match-previews .promo-image, .page-index-latest-events-match-previews .casino-event-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-latest-events-match-previews .promo-title, .page-index-latest-events-match-previews .event-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-latest-events-match-previews .promo-description, .page-index-latest-events-match-previews .event-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-latest-events-match-previews .btn-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border: 1px solid #FFD700;
    border-radius: 5px;
}

.page-index-latest-events-match-previews .btn-link:hover {
    color: #0A2463;
    background-color: #FFD700;
}

.page-index-latest-events-match-previews .events-section {
    background-color: #f0f4f8;
}

.page-index-latest-events-match-previews .event-category {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.page-index-latest-events-match-previews .category-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 25px;
    text-align: center;
}

.page-index-latest-events-match-previews .event-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-index-latest-events-match-previews .event-category p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
}

.page-index-latest-events-match-previews .event-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-latest-events-match-previews .event-category ul li {
    background-color: #e6eef7;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 5px solid #FFD700;
    font-size: 1em;
    color: #333;
}

.page-index-latest-events-match-previews .event-category .btn {
    margin-top: 20px;
    display: inline-block;
}

.page-index-latest-events-match-previews .why-choose-us-section {
    background-color: #0A2463;
    color: #FFFFFF;
    text-align: center;
}

.page-index-latest-events-match-previews .why-choose-us-section .section-title {
    color: #FFD700;
}

.page-index-latest-events-match-previews .why-choose-us-section .section-title::after {
    background-color: #FFD700;
}

.page-index-latest-events-match-previews .reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-events-match-previews .reason-card {
    background-color: #1a3c7a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-latest-events-match-previews .reason-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-events-match-previews .reason-card p {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-index-latest-events-match-previews .reason-card .highlight {
  color: #FFD700;
}

.page-index-latest-events-match-previews .reason-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-top: 20px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.page-index-latest-events-match-previews .cta-section {
    background: linear-gradient(90deg, #FFD700, #e6c200);
    padding: 80px 0;
    text-align: center;
    color: #0A2463;
}

.page-index-latest-events-match-previews .cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0A2463;
}

.page-index-latest-events-match-previews .cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #333;
}

.page-index-latest-events-match-previews .cta-description .highlight {
  color: #0A2463;
}

.page-index-latest-events-match-previews .cta-actions .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-width: 3px;
}

.page-index-latest-events-match-previews .responsible-gambling-section {
    background-color: #f0f0f0;
    text-align: center;
    padding: 40px 0;
}

.page-index-latest-events-match-previews .responsible-gambling-section .section-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 20px;
}

.page-index-latest-events-match-previews .responsible-gambling-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 1em;
}

.page-index-latest-events-match-previews .responsible-gambling-section .highlight {
  color: #0A2463;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-events-match-previews .hero-title {
        font-size: 2.5em;
    }
    .page-index-latest-events-match-previews .section-title {
        font-size: 2em;
    }
    .page-index-latest-events-match-previews .promo-grid, .page-index-latest-events-match-previews .casino-event-grid, .page-index-latest-events-match-previews .reason-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-index-latest-events-match-previews .cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-latest-events-match-previews .hero-section {
        padding: 60px 0 30px;
    }
    .page-index-latest-events-match-previews .hero-title {
        font-size: 2em;
    }
    .page-index-latest-events-match-previews .hero-description {
        font-size: 1em;
    }
    .page-index-latest-events-match-previews .section-title {
        font-size: 1.8em;
    }
    .page-index-latest-events-match-previews .promo-card, .page-index-latest-events-match-previews .casino-event-card, .page-index-latest-events-match-previews .reason-card {
        padding: 20px;
    }
    .page-index-latest-events-match-previews .promo-title, .page-index-latest-events-match-previews .event-title, .page-index-latest-events-match-previews .reason-title {
        font-size: 1.4em;
    }
    .page-index-latest-events-match-previews .cta-title {
        font-size: 2em;
    }
    .page-index-latest-events-match-previews .cta-actions .btn-large {
        padding: 15px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-latest-events-match-previews .hero-actions .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    .page-index-latest-events-match-previews .promo-grid, .page-index-latest-events-match-previews .casino-event-grid, .page-index-latest-events-match-previews .reason-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-events-match-previews .section-intro, .page-index-latest-events-match-previews .section-outro {
        margin-bottom: 30px;
    }
    .page-index-latest-events-match-previews .event-category {
        padding: 20px;
    }
    .page-index-latest-events-match-previews .cta-actions .btn-large {
        width: 90%;
    }
}