/* style/e-games-new-releases.css */
.page-e-games-new-releases {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark backgrounds */
    line-height: 1.6;
}

.page-e-games-new-releases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-e-games-new-releases__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #000000 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #F0B90B;
}

.page-e-games-new-releases__hero-title {
    font-size: 3.5em;
    color: #F0B90B;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e-games-new-releases__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-e-games-new-releases__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-e-games-new-releases__btn--primary {
    background-color: #F0B90B;
    color: #1A2B4C; /* Dark text on bright background */
}

.page-e-games-new-releases__btn--primary:hover {
    background-color: #e5a500;
    transform: translateY(-3px);
}

.page-e-games-new-releases__btn--secondary {
    background-color: transparent;
    color: #F0B90B;
    border: 2px solid #F0B90B;
    margin: 0 10px;
}

.page-e-games-new-releases__btn--secondary:hover {
    background-color: #F0B90B;
    color: #1A2B4C;
    transform: translateY(-3px);
}

.page-e-games-new-releases__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #F0B90B;
    color: #1A2B4C;
}

.page-e-games-new-releases__btn--small:hover {
    background-color: #e5a500;
    transform: translateY(-2px);
}

.page-e-games-new-releases__btn--cta {
    background-color: #F0B90B;
    color: #1A2B4C;
    font-size: 1.3em;
    padding: 20px 40px;
}

.page-e-games-new-releases__btn--cta:hover {
    background-color: #e5a500;
    transform: translateY(-5px);
}

/* Section Styling */
.page-e-games-new-releases__section-title {
    font-size: 2.8em;
    color: #F0B90B;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    padding-top: 40px;
}

.page-e-games-new-releases__section-title--light {
    color: #FFFFFF;
}

.page-e-games-new-releases__section-description {
    font-size: 1.2em;
    text-align: center;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-e-games-new-releases__description-text {
    font-size: 1.1em;
    text-align: center;
    color: #e0e0e0;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

.page-e-games-new-releases__description-text--light {
    color: #f8f8f8;
}

/* About GA888 Section */
.page-e-games-new-releases__about-ga888 {
    background-color: #1A2B4C;
    padding: 60px 0;
}

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

.page-e-games-new-releases__feature-item {
    background-color: #2a3d5e; /* Slightly lighter dark blue */
    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-e-games-new-releases__feature-item:hover {
    transform: translateY(-10px);
}

.page-e-games-new-releases__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-e-games-new-releases__feature-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-e-games-new-releases__feature-description {
    color: #cccccc;
    font-size: 1em;
}

.page-e-games-new-releases__text-center {
    text-align: center;
    margin-top: 50px;
}

/* New Releases Section */
.page-e-games-new-releases__new-releases {
    background-color: #0d1a2e;
    padding: 80px 0;
}

.page-e-games-new-releases__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-e-games-new-releases__game-card {
    background-color: #1A2B4C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-e-games-new-releases__game-card:hover {
    transform: translateY(-10px);
}

.page-e-games-new-releases__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #F0B90B;
}

.page-e-games-new-releases__game-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-e-games-new-releases__game-title {
    font-size: 2em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-e-games-new-releases__game-description {
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-e-games-new-releases__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-e-games-new-releases__game-features li {
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.page-e-games-new-releases__game-features li i {
    color: #F0B90B;
    margin-right: 10px;
}

/* Promotions Section */
.page-e-games-new-releases__promotions {
    background-color: #1A2B4C;
    padding: 80px 0;
}

.page-e-games-new-releases__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-e-games-new-releases__promo-card {
    background-color: #2a3d5e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease;
}

.page-e-games-new-releases__promo-card:hover {
    transform: translateY(-10px);
}

.page-e-games-new-releases__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #F0B90B;
    margin-bottom: 25px;
}

.page-e-games-new-releases__promo-title {
    font-size: 2em;
    color: #F0B90B;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-e-games-new-releases__promo-text {
    color: #cccccc;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* How to Start Section */
.page-e-games-new-releases__how-to-start {
    background-color: #0d1a2e;
    padding: 80px 0;
}

.page-e-games-new-releases__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-e-games-new-releases__steps li {
    background-color: #1A2B4C;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.page-e-games-new-releases__steps li:hover {
    transform: translateY(-10px);
}

.page-e-games-new-releases__step-icon {
    font-size: 3em;
    color: #F0B90B;
    margin-bottom: 20px;
}

.page-e-games-new-releases__step-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-e-games-new-releases__steps p {
    color: #cccccc;
    font-size: 1em;
}

.page-e-games-new-releases__steps p a {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
}

.page-e-games-new-releases__steps p a:hover {
    text-decoration: underline;
}

/* Responsible Gaming Section */
.page-e-games-new-releases__responsible-gaming {
    background-color: #1A2B4C;
    padding: 80px 0;
    text-align: center;
}

.page-e-games-new-releases__responsible-image {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-e-games-new-releases__call-to-action {
    background: linear-gradient(45deg, #1A2B4C, #F0B90B);
    padding: 100px 0;
    text-align: center;
    border-top: 5px solid #F0B90B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-e-games-new-releases__hero-title {
        font-size: 2.5em;
    }

    .page-e-games-new-releases__hero-subtitle {
        font-size: 1.2em;
    }

    .page-e-games-new-releases__section-title {
        font-size: 2em;
    }

    .page-e-games-new-releases__section-description,
    .page-e-games-new-releases__description-text {
        font-size: 1em;
    }

    .page-e-games-new-releases__grid,
    .page-e-games-new-releases__game-list,
    .page-e-games-new-releases__promo-grid,
    .page-e-games-new-releases__steps {
        grid-template-columns: 1fr;
    }

    .page-e-games-new-releases__btn--secondary {
        margin: 10px 0;
    }

    .page-e-games-new-releases__btn--cta {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-e-games-new-releases__hero-title {
        font-size: 2em;
    }

    .page-e-games-new-releases__hero-subtitle {
        font-size: 1em;
    }

    .page-e-games-new-releases__section-title {
        font-size: 1.8em;
    }

    .page-e-games-new-releases__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-e-games-new-releases__game-title,
    .page-e-games-new-releases__promo-title,
    .page-e-games-new-releases__feature-title,
    .page-e-games-new-releases__step-title {
        font-size: 1.5em;
    }
}