/* style/betting-news.css */
.page-betting-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-betting-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-news__hero {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-betting-news__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-betting-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; /* White for contrast */
}

.page-betting-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-betting-news__hero-button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue for text on accent */
    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-betting-news__hero-button:hover {
    background-color: #e6b800; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

.page-betting-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-betting-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-betting-news__introduction,
.page-betting-news__why-lu88,
.page-betting-news__responsible-gambling {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-betting-news__introduction p,
.page-betting-news__why-lu88 p,
.page-betting-news__responsible-gambling p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
}

.page-betting-news__section-title {
    font-size: 2.5em;
    color: #003366; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-betting-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Accent color */
    border-radius: 2px;
}

.page-betting-news__section-subtitle {
    font-size: 1.3em;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.page-betting-news__text-content .keyword,
.page-betting-news__section-title .highlight {
    color: #003366;
    font-weight: bold;
}

.page-betting-news__text-content .highlight {
    color: #FFCC00;
}

.page-betting-news__categories {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-betting-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-betting-news__article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-betting-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-news__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-betting-news__article-card h3 {
    font-size: 1.5em;
    color: #003366;
    margin: 20px 20px 10px 20px;
}

.page-betting-news__article-description {
    font-size: 1em;
    color: #555;
    padding: 0 20px;
    flex-grow: 1;
}

.page-betting-news__read-more {
    display: inline-block;
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue for text on accent */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px;
    transition: background-color 0.3s ease;
}

.page-betting-news__read-more:hover {
    background-color: #e6b800;
}

.page-betting-news__features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-betting-news__features-list li {
    background-color: #e6f0f8; /* Light blue */
    padding: 15px 20px;
    border-left: 5px solid #003366; /* Main brand color */
    border-radius: 5px;
    font-size: 1.1em;
    color: #222;
}

.page-betting-news__features-list li strong {
    color: #003366;
}

.page-betting-news__cta {
    background: linear-gradient(135deg, #003366, #001a33); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-betting-news__cta-inner {
    max-width: 900px;
}

.page-betting-news__cta .page-betting-news__section-title {
    color: #ffffff;
}

.page-betting-news__cta .page-betting-news__section-title::after {
    background-color: #FFCC00;
}

.page-betting-news__cta .page-betting-news__text-content {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-betting-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-betting-news__cta-button {
    display: inline-block;
    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: 2px solid transparent;
}

.page-betting-news__cta-button.primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue for text on accent */
}

.page-betting-news__cta-button.primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-betting-news__cta-button.secondary {
    background-color: transparent;
    color: #FFCC00; /* Accent color for text */
    border-color: #FFCC00;
}

.page-betting-news__cta-button.secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-betting-news__responsible-gambling {
    background-color: #fefefe;
    padding: 60px 0 80px 0;
}

.page-betting-news__responsible-gambling .page-betting-news__section-title {
    margin-bottom: 30px;
}

.page-betting-news__responsible-gambling p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-betting-news__hero-title {
        font-size: 2.8em;
    }
    .page-betting-news__hero-description {
        font-size: 1.1em;
    }
    .page-betting-news__section-title {
        font-size: 2em;
    }
    .page-betting-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-betting-news__hero {
        padding: 60px 20px;
    }
    .page-betting-news__hero-title {
        font-size: 2.2em;
    }
    .page-betting-news__hero-description {
        font-size: 1em;
    }
    .page-betting-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-betting-news__section-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    .page-betting-news__introduction,
    .page-betting-news__why-lu88,
    .page-betting-news__responsible-gambling {
        padding: 40px 0;
    }
    .page-betting-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-betting-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-betting-news__cta-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-betting-news__features-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-betting-news__hero-title {
        font-size: 1.8em;
    }
    .page-betting-news__hero-description {
        font-size: 0.9em;
    }
    .page-betting-news__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-betting-news__section-title {
        font-size: 1.5em;
    }
    .page-betting-news__article-card h3 {
        font-size: 1.3em;
    }
    .page-betting-news__article-description {
        font-size: 0.9em;
    }
    .page-betting-news__read-more {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}