/* style/latest-news.css */
.page-latest-news {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-latest-news__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-latest-news__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-latest-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-latest-news__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

.page-latest-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: none;
}

.page-latest-news__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-latest-news__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-latest-news__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-latest-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-latest-news__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-latest-news__btn--text:hover {
    color: #e6c200;
}

.page-latest-news__section {
    padding: 60px 0;
    background-color: #1a2a47;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-latest-news__section:nth-of-type(even) {
    background-color: #0A192F;
}

.page-latest-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-latest-news__section-description,
.page-latest-news__section-text {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: justify;
    margin-bottom: 20px;
}

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

.page-latest-news__news-card {
    background-color: #0A192F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-latest-news__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-latest-news__card-content {
    padding: 25px;
}

.page-latest-news__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-latest-news__card-text {
    color: #B0B0B0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-latest-news__card-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-latest-news__card-link:hover {
    color: #e6c200;
}

.page-latest-news__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-latest-news__list-item {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-latest-news__list-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-latest-news__list-text {
    color: #C0C0C0;
    font-size: 1.05em;
}

.page-latest-news__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-latest-news__strategy-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-latest-news__strategy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-latest-news__strategy-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-latest-news__strategy-text {
    color: #B0B0B0;
    font-size: 1em;
}

.page-latest-news__event-list,
.page-latest-news__announcement-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-latest-news__event-item,
.page-latest-news__announcement-item {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.page-latest-news__event-title,
.page-latest-news__announcement-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-latest-news__event-text,
.page-latest-news__announcement-text {
    color: #C0C0C0;
    font-size: 1.05em;
    flex-grow: 1;
}

.page-latest-news__event-date,
.page-latest-news__announcement-date {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
    text-align: right;
}

.page-latest-news__cta-download {
    background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
    color: #0A192F;
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.page-latest-news__cta-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,light_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-latest-news__cta-content {
    position: relative;
    z-index: 1;
}

.page-latest-news__cta-title {
    font-size: 3em;
    color: #0A192F;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-latest-news__cta-description {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
}

.page-latest-news__cta-buttons .page-latest-news__btn {
    margin: 0 10px;
}

.page-latest-news__cta-buttons .page-latest-news__btn--primary {
    background-color: #0A192F;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-latest-news__cta-buttons .page-latest-news__btn--primary:hover {
    background-color: #1a3a6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-latest-news__cta-buttons .page-latest-news__btn--secondary {
    background-color: transparent;
    color: #0A192F;
    border: 2px solid #0A192F;
}

.page-latest-news__cta-buttons .page-latest-news__btn--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-latest-news__cta-image {
    max-width: 400px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-latest-news__responsible-gambling {
    text-align: center;
    background-color: #0A192F;
    padding: 60px 0;
}

.page-latest-news__responsible-gambling .page-latest-news__section-title {
    color: #FFD700;
}

.page-latest-news__responsible-gambling .page-latest-news__section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news__hero-title {
        font-size: 2.8em;
    }
    .page-latest-news__hero-subtitle {
        font-size: 1.2em;
    }
    .page-latest-news__section-title {
        font-size: 2em;
    }
    .page-latest-news__cta-title {
        font-size: 2.5em;
    }
    .page-latest-news__grid,
    .page-latest-news__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-latest-news__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-latest-news__cta-buttons .page-latest-news__btn {
        width: 80%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-latest-news__hero {
        padding: 80px 0;
    }
    .page-latest-news__hero-title {
        font-size: 2.2em;
    }
    .page-latest-news__hero-subtitle {
        font-size: 1em;
    }
    .page-latest-news__section {
        padding: 40px 0;
    }
    .page-latest-news__section-title {
        font-size: 1.8em;
    }
    .page-latest-news__cta-title {
        font-size: 2em;
    }
    .page-latest-news__cta-image {
        max-width: 300px;
    }
    .page-latest-news__list-title,
    .page-latest-news__event-title,
    .page-latest-news__announcement-title {
        font-size: 1.5em;
    }
    .page-latest-news__strategy-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-latest-news__hero {
        padding: 60px 0;
    }
    .page-latest-news__hero-title {
        font-size: 1.8em;
    }
    .page-latest-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-latest-news__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-latest-news__section-title {
        font-size: 1.5em;
    }
    .page-latest-news__cta-title {
        font-size: 1.8em;
    }
    .page-latest-news__cta-image {
        max-width: 250px;
    }
    .page-latest-news__card-title {
        font-size: 1.4em;
    }
}