/* style/news-popular-game-releases.css */

.page-news-popular-game-releases {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color for dark background */
    background-color: #0A2342; /* Main background color */
}

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

.page-news-popular-game-releases h1, .page-news-popular-game-releases h2, .page-news-popular-game-releases h3 {
    color: #E6B325; /* Auxiliary color for headings */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news-popular-game-releases h1 {
    font-size: 2.8em;
    text-align: center;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-news-popular-game-releases h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-news-popular-game-releases h3 {
    font-size: 1.6em;
    margin-top: 25px;
}

.page-news-popular-game-releases p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #D3D3D3; /* Lighter text for readability on dark background */
}

.page-news-popular-game-releases ul {
    list-style: disc;
    margin-left: 20px;
    padding: 0;
    color: #D3D3D3;
}

.page-news-popular-game-releases ul li {
    margin-bottom: 10px;
}

.page-news-popular-game-releases .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
}

.page-news-popular-game-releases .btn-primary {
    background-color: #E6B325;
    color: #0A2342;
    border: 2px solid #E6B325;
}

.page-news-popular-game-releases .btn-primary:hover {
    background-color: #f0c96e;
    border-color: #f0c96e;
}

.page-news-popular-game-releases .btn-secondary {
    background-color: transparent;
    color: #E6B325;
    border: 2px solid #E6B325;
}

.page-news-popular-game-releases .btn-secondary:hover {
    background-color: #E6B325;
    color: #0A2342;
}

.page-news-popular-game-releases .btn-download {
    background-color: #0A2342;
    color: #E6B325;
    border: 2px solid #E6B325;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-news-popular-game-releases .btn-download i {
    margin-right: 8px;
    font-size: 1.2em;
}

.page-news-popular-game-releases .btn-download:hover {
    background-color: #E6B325;
    color: #0A2342;
}

.page-news-popular-game-releases .btn-text-link {
    color: #E6B325;
    text-decoration: underline;
    font-weight: normal;
    display: inline-block;
    margin-top: 15px;
}

.page-news-popular-game-releases .btn-text-link:hover {
    color: #f0c96e;
}

/* Hero Section */
.page-news-popular-game-releases .hero-section {
    background: linear-gradient(135deg, #0A2342, #1a3a61);
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-news-popular-game-releases .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-news-popular-game-releases .hero-content {
    max-width: 800px;
}

.page-news-popular-game-releases .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-news-popular-game-releases .hero-image-wrapper {
    width: 100%;
    max-width: 600px;
}

.page-news-popular-game-releases .hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* New Releases Section */
.page-news-popular-game-releases .new-releases-section,
.page-news-popular-game-releases .updates-section,
.page-news-popular-game-releases .why-77bet-section,
.page-news-popular-game-releases .app-download-section,
.page-news-popular-game-releases .responsible-gaming-section,
.page-news-popular-game-releases .cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-news-popular-game-releases .new-releases-section {
    background-color: #0A2342;
}

.page-news-popular-game-releases .game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-popular-game-releases .game-card {
    background-color: #1a3a61;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.page-news-popular-game-releases .game-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-news-popular-game-releases .game-card h3 {
    font-size: 1.4em;
    color: #E6B325;
    margin-bottom: 10px;
}

.page-news-popular-game-releases .game-card p {
    font-size: 1em;
    color: #D3D3D3;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Updates Section */
.page-news-popular-game-releases .updates-section {
    background-color: #1a3a61;
}

.page-news-popular-game-releases .update-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-news-popular-game-releases .update-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: invert(80%) sepia(50%) saturate(600%) hue-rotate(350deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-news-popular-game-releases .update-item h3 {
    color: #E6B325;
    font-size: 1.5em;
}

.page-news-popular-game-releases .update-item p {
    font-size: 1em;
    color: #D3D3D3;
}

/* Why 77bet Section */
.page-news-popular-game-releases .why-77bet-section {
    background-color: #0A2342;
}

.page-news-popular-game-releases .why-77bet-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.page-news-popular-game-releases .why-77bet-content {
    text-align: left;
    max-width: 700px;
}

.page-news-popular-game-releases .why-77bet-content h2 {
    text-align: left;
}

.page-news-popular-game-releases .why-77bet-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-news-popular-game-releases .why-77bet-content ul li {
    background-color: #1a3a61;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #D3D3D3;
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.page-news-popular-game-releases .why-77bet-content ul li::before {
    content: '✓';
    color: #E6B325;
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 15px;
}

.page-news-popular-game-releases .why-77bet-image-wrapper {
    width: 100%;
    max-width: 500px;
}

.page-news-popular-game-releases .why-77bet-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* App Download Section */
.page-news-popular-game-releases .app-download-section {
    background-color: #1a3a61;
}

.page-news-popular-game-releases .app-download-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.page-news-popular-game-releases .app-content {
    text-align: center;
    max-width: 700px;
}

.page-news-popular-game-releases .download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-news-popular-game-releases .small-text {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-top: 20px;
}

.page-news-popular-game-releases .app-image-wrapper {
    width: 100%;
    max-width: 400px;
}

.page-news-popular-game-releases .app-mockup-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Section */
.page-news-popular-game-releases .responsible-gaming-section {
    background-color: #0A2342;
    padding: 40px 0;
}

/* CTA Section */
.page-news-popular-game-releases .cta-section {
    background: linear-gradient(135deg, #1a3a61, #0A2342);
    padding: 80px 0;
}

.page-news-popular-game-releases .cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-news-popular-game-releases .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-news-popular-game-releases .hero-section .container,
    .page-news-popular-game-releases .why-77bet-section .container,
    .page-news-popular-game-releases .app-download-section .container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .page-news-popular-game-releases .hero-section .hero-content,
    .page-news-popular-game-releases .why-77bet-content,
    .page-news-popular-game-releases .app-content {
        text-align: left;
        flex: 1;
    }

    .page-news-popular-game-releases .hero-image-wrapper,
    .page-news-popular-game-releases .why-77bet-image-wrapper,
    .page-news-popular-game-releases .app-image-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .page-news-popular-game-releases h1,
    .page-news-popular-game-releases h2 {
        text-align: left;
    }
    
    .page-news-popular-game-releases .hero-section h1 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .page-news-popular-game-releases h1 {
        font-size: 2em;
    }

    .page-news-popular-game-releases h2 {
        font-size: 1.8em;
    }

    .page-news-popular-game-releases .hero-section,
    .page-news-popular-game-releases .cta-section {
        padding: 50px 0;
    }

    .page-news-popular-game-releases .game-list {
        grid-template-columns: 1fr;
    }

    .page-news-popular-game-releases .why-77bet-section .container,
    .page-news-popular-game-releases .app-download-section .container {
        flex-direction: column;
    }

    .page-news-popular-game-releases .why-77bet-content,
    .page-news-popular-game-releases .app-content {
        text-align: center;
    }

    .page-news-popular-game-releases .why-77bet-content h2 {
        text-align: center;
    }

    .page-news-popular-game-releases .why-77bet-content ul li {
        padding-left: 20px;
        text-align: center;
    }
    .page-news-popular-game-releases .why-77bet-content ul li::before {
        display: none;
    }
}

/* Icons for download buttons (placeholders as actual icons are not generated) */
.page-news-popular-game-releases .icon-apple::before { content: ''; }
.page-news-popular-game-releases .icon-android::before { content: '▶'; }