/* style/news-information-game-updates.css */

/* Base styles for the page content area */
.page-news-information-game-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for readability on light backgrounds */
    background-color: #f9f9f9; /* Light background */
}

/* Container for consistent content width */
.page-news-information-game-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-news-information-game-updates__hero {
    background: linear-gradient(135deg, #0056b3, #003366); /* Darker blue gradient for hero */
    color: #ffffff; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-information-game-updates__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming_pattern,subtle]') no-repeat center center / cover;
    opacity: 0.1;
    z-index: 0;
}

.page-news-information-game-updates__hero .page-news-information-game-updates__container {
    position: relative;
    z-index: 1;
}

.page-news-information-game-updates__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-information-game-updates__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Lighter gray for readability */
}

/* Buttons */
.page-news-information-game-updates__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-information-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;
    border: none;
}

.page-news-information-game-updates__button--primary {
    background-color: #ffd700; /* Gold */
    color: #003366; /* Dark blue for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-news-information-game-updates__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-news-information-game-updates__button--secondary {
    background-color: #0056b3; /* Main blue */
    color: #ffffff; /* White */
    border: 2px solid #ffd700; /* Gold border */
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}

.page-news-information-game-updates__button--secondary:hover {
    background-color: #003366; /* Darker blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.6);
}

/* General Section Styling */
.page-news-information-game-updates__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.page-news-information-game-updates__section:nth-of-type(even) {
    background-color: #f2f7fc; /* Light blue background for alternating sections */
}

.page-news-information-game-updates__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Main blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-information-game-updates__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

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

.page-news-information-game-updates__feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    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;
}

.page-news-information-game-updates__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-news-information-game-updates__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-news-information-game-updates__feature-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-news-information-game-updates__feature-description {
    font-size: 1em;
    color: #666666;
}

/* Recent Updates Section */
.page-news-information-game-updates__update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-information-game-updates__update-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    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;
}

.page-news-information-game-updates__update-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-news-information-game-updates__update-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-news-information-game-updates__update-item h3,
.page-news-information-game-updates__update-item p,
.page-news-information-game-updates__update-item ul {
    padding: 0 25px;
}

.page-news-information-game-updates__update-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-news-information-game-updates__update-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1; /* Ensures content pushes CTA to bottom */
}

.page-news-information-game-updates__list {
    list-style-type: disc;
    padding-left: 45px;
    margin-bottom: 20px;
    color: #555555;
}

.page-news-information-game-updates__list li {
    margin-bottom: 8px;
}

.page-news-information-game-updates__app-cta {
    padding: 0 25px 25px;
    text-align: center;
    margin-top: auto; /* Pushes button to the bottom */
}

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

.page-news-information-game-updates__step-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    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;
}

.page-news-information-game-updates__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-news-information-game-updates__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-news-information-game-updates__step-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-news-information-game-updates__step-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-news-information-game-updates__link-text {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-information-game-updates__link-text:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Benefits Section */
.page-news-information-game-updates__benefits-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-news-information-game-updates__benefits-list li {
    background-color: #ffffff;
    border-left: 5px solid #0056b3;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444444;
}

.page-news-information-game-updates__benefits-list li strong {
    color: #0056b3;
}

/* Bottom CTA Section */
.page-news-information-game-updates__cta-bottom {
    background: linear-gradient(135deg, #0056b3, #003366); /* Darker blue gradient */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-news-information-game-updates__cta-bottom .page-news-information-game-updates__section-title {
    color: #ffd700; /* Gold for emphasis */
}

.page-news-information-game-updates__cta-bottom .page-news-information-game-updates__section-title::after {
    background-color: #ffffff; /* White underline */
}

.page-news-information-game-updates__cta-bottom .page-news-information-game-updates__text {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-information-game-updates__title {
        font-size: 2.5em;
    }
    .page-news-information-game-updates__section-title {
        font-size: 2em;
    }
    .page-news-information-game-updates__features-grid,
    .page-news-information-game-updates__update-grid,
    .page-news-information-game-updates__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-information-game-updates__hero {
        padding: 60px 0;
    }
    .page-news-information-game-updates__title {
        font-size: 2em;
    }
    .page-news-information-game-updates__description {
        font-size: 1em;
    }
    .page-news-information-game-updates__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-information-game-updates__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-information-game-updates__section {
        padding: 40px 0;
    }
    .page-news-information-game-updates__section-title {
        font-size: 1.8em;
    }
    .page-news-information-game-updates__text {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-news-information-game-updates__features-grid,
    .page-news-information-game-updates__update-grid,
    .page-news-information-game-updates__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-news-information-game-updates__update-item h3,
    .page-news-information-game-updates__update-item p,
    .page-news-information-game-updates__update-item ul {
        padding: 0 20px;
    }
    .page-news-information-game-updates__app-cta {
        padding: 0 20px 20px;
    }
    .page-news-information-game-updates__benefits-list li {
        padding: 15px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news-information-game-updates__title {
        font-size: 1.8em;
    }
    .page-news-information-game-updates__section-title {
        font-size: 1.5em;
    }
    .page-news-information-game-updates__container {
        padding: 0 15px;
    }
}