/* style/news-game-updates.css */
.page-news-game-updates {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-news-game-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-news-game-updates__hero {
    background: linear-gradient(135deg, #0A192F, #1A304B); /* Slightly lighter dark blue gradient */
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-game-updates__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-news-game-updates__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-news-game-updates__hero-subtitle {
    font-size: 1.25em;
    color: #C0C0C0; /* Lighter grey for subtitle */
    max-width: 800px;
    margin: 0 auto 30px;
}

/* General Section Styling */
.page-news-game-updates__section {
    padding: 80px 0;
    background-color: #0A192F; /* Consistent dark background */
}

.page-news-game-updates__section:nth-of-type(even) {
    background-color: #122842; /* Slightly different dark background for alternating sections */
}

.page-news-game-updates__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-game-updates__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-game-updates__text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-news-game-updates__text a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-news-game-updates__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-news-game-updates__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A192F; /* Dark text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-news-game-updates__button--primary:hover {
    background-color: #E6C200; /* Darker gold on hover */
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-news-game-updates__button--secondary {
    background-color: #1A304B; /* Dark blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-game-updates__button--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A192F; /* Dark text on gold */
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.page-news-game-updates__button--link {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-news-game-updates__button--link:hover {
    color: #E6C200;
    text-decoration: none;
}

.page-news-game-updates__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Lists */
.page-news-game-updates__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-news-game-updates__list-item {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-news-game-updates__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    top: 0;
}

.page-news-game-updates__list-item strong {
    color: #FFD700;
}

/* Card Grid */
.page-news-game-updates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-game-updates__card {
    background-color: #1A304B; /* Darker blue for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-news-game-updates__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-news-game-updates__card-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #FFD700;
}

.page-news-game-updates__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-news-game-updates__card-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-news-game-updates__card-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.page-news-game-updates__card-text a:hover {
    text-decoration: underline;
}


/* Steps Grid */
.page-news-game-updates__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-game-updates__step-card {
    background-color: #1A304B;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news-game-updates__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-news-game-updates__step-text {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-news-game-updates__step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 20px auto 0;
    border-radius: 8px;
    border: 1px solid #FFD700;
}

/* Final CTA Section */
.page-news-game-updates__cta-final {
    text-align: center;
    background-color: #0A192F;
    padding: 80px 0 100px;
}

.page-news-game-updates__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-game-updates__hero-title {
        font-size: 2.8em;
    }
    .page-news-game-updates__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news-game-updates__section-title {
        font-size: 2em;
    }
    .page-news-game-updates__grid,
    .page-news-game-updates__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-news-game-updates__card,
    .page-news-game-updates__step-card {
        padding: 25px;
    }
    .page-news-game-updates__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-news-game-updates__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-news-game-updates__hero {
        padding: 80px 0 40px;
    }
    .page-news-game-updates__hero-title {
        font-size: 2.2em;
    }
    .page-news-game-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-news-game-updates__section {
        padding: 60px 0;
    }
    .page-news-game-updates__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-news-game-updates__text,
    .page-news-game-updates__list-item,
    .page-news-game-updates__card-text,
    .page-news-game-updates__step-text {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-news-game-updates__hero-title {
        font-size: 1.8em;
    }
    .page-news-game-updates__button {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-news-game-updates__card-title {
        font-size: 1.4em;
    }
    .page-news-game-updates__step-title {
        font-size: 1.2em;
    }
}