/* style/industry-news-platform-updates.css */

/* Base Styles & Typography */
.page-industry-news-platform-updates {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Main background color */
}

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

.page-industry-news-platform-updates h1,
.page-industry-news-platform-updates h2,
.page-industry-news-platform-updates h3 {
    color: #FFD700; /* Gold for headings */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-platform-updates h1 {
    font-size: 3.2em;
    text-align: center;
    line-height: 1.2;
}

.page-industry-news-platform-updates h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-industry-news-platform-updates h3 {
    font-size: 1.8em;
    color: #E2E8F0; /* Lighter color for subheadings */
}

.page-industry-news-platform-updates p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-industry-news-platform-updates .highlight {
    color: #FFD700;
}

/* Buttons */
.page-industry-news-platform-updates__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-industry-news-platform-updates__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

.page-industry-news-platform-updates__btn--primary:hover {
    background-color: #E2C000; /* Slightly darker gold on hover */
    color: #000;
}

.page-industry-news-platform-updates__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-industry-news-platform-updates__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-industry-news-platform-updates__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* Hero Section */
.page-industry-news-platform-updates__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
}

.page-industry-news-platform-updates__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #E2E8F0;
}

.page-industry-news-platform-updates__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #CBD5E0;
}

/* General Sections */
.page-industry-news-platform-updates__section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-industry-news-platform-updates__section:nth-of-type(even) {
    background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-industry-news-platform-updates__section-title {
    margin-bottom: 20px;
}

.page-industry-news-platform-updates__section-description {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.2em;
    color: #CBD5E0;
}

.page-industry-news-platform-updates__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #FFD700;
}

/* Feature Grid */
.page-industry-news-platform-updates__feature-grid,
.page-industry-news-platform-updates__game-grid,
.page-industry-news-platform-updates__security-grid,
.page-industry-news-platform-updates__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-platform-updates__feature-card,
.page-industry-news-platform-updates__game-card,
.page-industry-news-platform-updates__security-card,
.page-industry-news-platform-updates__promo-card {
    background-color: #2D3748; /* Card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-platform-updates__feature-card:hover,
.page-industry-news-platform-updates__game-card:hover,
.page-industry-news-platform-updates__security-card:hover,
.page-industry-news-platform-updates__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-industry-news-platform-updates__feature-icon,
.page-industry-news-platform-updates__security-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons pop */
}

.page-industry-news-platform-updates__game-image,
.page-industry-news-platform-updates__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news-platform-updates__feature-title,
.page-industry-news-platform-updates__game-title,
.page-industry-news-platform-updates__security-title,
.page-industry-news-platform-updates__promo-title {
    color: #FFD700;
    margin-bottom: 10px;
}

.page-industry-news-platform-updates__feature-text,
.page-industry-news-platform-updates__game-text,
.page-industry-news-platform-updates__security-text,
.page-industry-news-platform-updates__promo-text {
    font-size: 1em;
    color: #CBD5E0;
}

/* Maintenance Notices */
.page-industry-news-platform-updates__maintenance-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.page-industry-news-platform-updates__maintenance-item {
    background-color: #2D3748;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-platform-updates__maintenance-title {
    color: #FFD700;
    margin-bottom: 5px;
}

.page-industry-news-platform-updates__maintenance-date {
    font-size: 0.9em;
    color: #A0AEC0;
    margin-bottom: 15px;
}

.page-industry-news-platform-updates__maintenance-text {
    color: #E2E8F0;
}

/* App Download Section */
.page-industry-news-platform-updates__app-download {
    text-align: center;
    padding: 80px 0;
    background-color: #1A202C;
}

.page-industry-news-platform-updates__app-image {
    max-width: 300px;
    height: auto;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Conclusion */
.page-industry-news-platform-updates__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-platform-updates__hero-title {
        font-size: 3em;
    }

    .page-industry-news-platform-updates h1 {
        font-size: 2.5em;
    }

    .page-industry-news-platform-updates h2 {
        font-size: 2em;
    }

    .page-industry-news-platform-updates h3 {
        font-size: 1.5em;
    }

    .page-industry-news-platform-updates__feature-grid,
    .page-industry-news-platform-updates__game-grid,
    .page-industry-news-platform-updates__security-grid,
    .page-industry-news-platform-updates__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-platform-updates__hero,
    .page-industry-news-platform-updates__section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-industry-news-platform-updates__hero-title {
        font-size: 2.2em;
    }

    .page-industry-news-platform-updates__hero-subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-platform-updates h1 {
        font-size: 2em;
    }

    .page-industry-news-platform-updates h2 {
        font-size: 1.8em;
    }

    .page-industry-news-platform-updates__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-industry-news-platform-updates__container {
        padding: 15px;
    }
}