/* style/industry-news-new-games.css */
.page-industry-news-new-games {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey for general text on dark backgrounds */
    background-color: #121f2f; /* Slightly lighter dark background for main content */
}

.page-industry-news-new-games .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-new-games h1, .page-industry-news-new-games h2, .page-industry-news-new-games h3, .page-industry-news-new-games h4 {
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-industry-news-new-games h1 {
    font-size: 3.2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-new-games h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-industry-news-new-games h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-new-games p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-industry-news-new-games .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-industry-news-new-games .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A2A40; /* Dark blue text */
    font-size: 1.1em;
}

.page-industry-news-new-games .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #0d1a29;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-industry-news-new-games .btn-secondary {
    background-color: #1A2A40; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
    font-size: 1em;
}

.page-industry-news-new-games .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2A40;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

/* Hero Section */
.page-industry-news-new-games .hero-section {
    background: linear-gradient(135deg, #1A2A40 0%, #3a4a60 100%);
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-new-games .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern,abc88]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-industry-news-new-games .hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
}

.page-industry-news-new-games .hero-content h1 {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-align: left;
}

.page-industry-news-new-games .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-news-new-games .hero-image-wrapper {
    z-index: 1;
    flex-shrink: 0;
}

.page-industry-news-new-games .hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: floatImage 3s ease-in-out infinite alternate;
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Section Styling */
.page-industry-news-new-games .section-intro, 
.page-industry-news-new-games .section-new-games, 
.page-industry-news-new-games .section-features, 
.page-industry-news-new-games .section-guide, 
.page-industry-news-new-games .section-promotions, 
.page-industry-news-new-games .section-how-to-start, 
.page-industry-news-new-games .section-testimonials, 
.page-industry-news-new-games .section-conclusion {
    padding: 60px 0;
    background-color: #1A2A40;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-new-games .section-intro {
    background-color: #1A2A40;
    color: #e0e0e0;
    padding-top: 40px;
}

.page-industry-news-new-games .section-new-games {
    background-color: #1A2A40;
    padding-bottom: 80px;
}

.page-industry-news-new-games .game-category {
    margin-top: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-industry-news-new-games .game-category:last-of-type {
    border-bottom: none;
}

.page-industry-news-new-games .game-category h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #FFD700;
    font-size: 2.2em;
}

.page-industry-news-new-games .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-industry-news-new-games .game-card {
    background-color: #2a3d50; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-new-games .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news-new-games .game-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-industry-news-new-games .game-card h4 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-industry-news-new-games .game-card p {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure consistent card height */
}

.page-industry-news-new-games .feature-list, .page-industry-news-new-games .promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-new-games .feature-item, .page-industry-news-new-games .promo-item {
    background-color: #2a3d50;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-industry-news-new-games .feature-item:hover, .page-industry-news-new-games .promo-item:hover {
    transform: translateY(-8px);
}

.page-industry-news-new-games .feature-icon, .page-industry-news-new-games .promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-industry-news-new-games .feature-item h3, .page-industry-news-new-games .promo-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-industry-news-new-games .feature-item p, .page-industry-news-new-games .promo-item p {
    color: #c0c0c0;
    font-size: 1em;
}

.page-industry-news-new-games .guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-new-games .guide-item {
    background-color: #2a3d50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-new-games .guide-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-industry-news-new-games .guide-item p {
    color: #c0c0c0;
    font-size: 1em;
}

.page-industry-news-new-games .guide-item p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-industry-news-new-games .guide-item p a:hover {
    text-decoration: underline;
}

.page-industry-news-new-games .cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-industry-news-new-games .cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #FFD700;
}

.page-industry-news-new-games .section-how-to-start ol {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-industry-news-new-games .steps-list li {
    background-color: #2a3d50;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-new-games .steps-list li h3 {
    color: #FFD700;
    margin-top: 15px;
    font-size: 1.8em;
}

.page-industry-news-new-games .steps-list li p {
    color: #c0c0c0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-industry-news-new-games .step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px #FFD700);
}

.page-industry-news-new-games .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-new-games .testimonial-card {
    background-color: #2a3d50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-style: italic;
    position: relative;
}

.page-industry-news-new-games .testimonial-card p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-industry-news-new-games .testimonial-card span {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #FFD700;
    font-style: normal;
}

.page-industry-news-new-games .section-conclusion {
    text-align: center;
    background-color: #1A2A40;
    padding-bottom: 80px;
}

.page-industry-news-new-games .section-conclusion p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-new-games .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-industry-news-new-games .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .page-industry-news-new-games .hero-content h1 {
        font-size: 3em;
        text-align: center;
    }

    .page-industry-news-new-games .hero-image {
        max-width: 400px;
    }

    .page-industry-news-new-games h1 {
        font-size: 2.8em;
    }

    .page-industry-news-new-games h2 {
        font-size: 2em;
    }

    .page-industry-news-new-games .game-category h3 {
        font-size: 1.8em;
    }

    .page-industry-news-new-games .game-grid, 
    .page-industry-news-new-games .feature-list, 
    .page-industry-news-new-games .promo-list, 
    .page-industry-news-new-games .guide-content, 
    .page-industry-news-new-games .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-news-new-games .hero-section {
        padding: 50px 15px;
    }

    .page-industry-news-new-games .hero-content h1 {
        font-size: 2.5em;
    }

    .page-industry-news-new-games .hero-content p {
        font-size: 1.1em;
    }

    .page-industry-news-new-games .hero-image {
        max-width: 300px;
    }

    .page-industry-news-new-games h1 {
        font-size: 2.2em;
    }

    .page-industry-news-new-games h2 {
        font-size: 1.8em;
    }

    .page-industry-news-new-games .game-category h3 {
        font-size: 1.6em;
    }

    .page-industry-news-new-games .game-grid, 
    .page-industry-news-new-games .feature-list, 
    .page-industry-news-new-games .promo-list, 
    .page-industry-news-new-games .guide-content, 
    .page-industry-news-new-games .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-new-games .section-intro, 
    .page-industry-news-new-games .section-new-games, 
    .page-industry-news-new-games .section-features, 
    .page-industry-news-new-games .section-guide, 
    .page-industry-news-new-games .section-promotions, 
    .page-industry-news-new-games .section-how-to-start, 
    .page-industry-news-new-games .section-testimonials, 
    .page-industry-news-new-games .section-conclusion {
        padding: 40px 0;
    }

    .page-industry-news-new-games .steps-list li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-new-games .hero-content h1 {
        font-size: 2em;
    }

    .page-industry-news-new-games .hero-content p {
        font-size: 1em;
    }

    .page-industry-news-new-games .hero-image {
        max-width: 250px;
    }

    .page-industry-news-new-games h1 {
        font-size: 1.8em;
    }

    .page-industry-news-new-games h2 {
        font-size: 1.6em;
    }

    .page-industry-news-new-games .btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-industry-news-new-games .game-card p {
        min-height: auto;
    }
}