/* style/index-popular-game-types.css */
.page-index-popular-game-types {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for better contrast on dark background */
    background-color: #0A2E36; /* Main background color */
}

.page-index-popular-game-types .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-popular-game-types .hero-section {
    background: linear-gradient(135deg, #0A2E36 0%, #1f4f5a 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.page-index-popular-game-types .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B34C; /* Auxiliary color for emphasis */
    line-height: 1.2;
    font-weight: bold;
}

.page-index-popular-game-types .hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #cccccc;
}

.page-index-popular-game-types .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-popular-game-types .btn-primary {
    background-color: #E0B34C; /* Auxiliary color for primary action */
    color: #0A2E36;
}

.page-index-popular-game-types .btn-primary:hover {
    background-color: #f5c464;
    transform: translateY(-3px);
}

.page-index-popular-game-types .btn-secondary {
    background-color: #1f4f5a; /* A darker variant of primary for secondary actions */
    color: #E0B34C;
    border: 1px solid #E0B34C;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-popular-game-types .btn-secondary:hover {
    background-color: #E0B34C;
    color: #0A2E36;
    transform: translateY(-2px);
}

.page-index-popular-game-types .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-index-popular-game-types .game-overview-section, 
.page-index-popular-game-types .why-vn8day-section {
    padding: 80px 0;
    background-color: #0A2E36;
    color: #f0f0f0;
}

.page-index-popular-game-types .section-title {
    font-size: 2.8em;
    color: #E0B34C;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-popular-game-types .section-description {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #cccccc;
}

.page-index-popular-game-types .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-popular-game-types .game-card {
    background-color: #1a3c42; /* Slightly lighter dark blue/green for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(224, 179, 76, 0.3);
}

.page-index-popular-game-types .game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-popular-game-types .game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 2px solid #E0B34C;
}

.page-index-popular-game-types .game-card-title {
    font-size: 1.8em;
    color: #E0B34C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-popular-game-types .game-card-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #c0c0c0;
    flex-grow: 1;
}

.page-index-popular-game-types .game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-popular-game-types .game-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.page-index-popular-game-types .game-features li::before {
    content: '✓';
    color: #E0B34C;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-popular-game-types .feature-highlight {
    color: #E0B34C;
}

.page-index-popular-game-types .game-strategy-tip {
    font-style: italic;
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(224, 179, 76, 0.1);
    border-left: 4px solid #E0B34C;
    border-radius: 5px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-index-popular-game-types .why-vn8day-section {
    background-color: #1a3c42;
    color: #f0f0f0;
}

.page-index-popular-game-types .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 900px;
}

.page-index-popular-game-types .benefits-list li {
    background-color: #0A2E36;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E0B34C;
    color: #e0e0e0;
}

.page-index-popular-game-types .benefit-highlight {
    color: #E0B34C;
    font-weight: bold;
}

.page-index-popular-game-types .call-to-action-text {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 30px;
    color: #E0B34C;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-popular-game-types .hero-title {
        font-size: 2.8em;
    }
    .page-index-popular-game-types .section-title {
        font-size: 2.2em;
    }
    .page-index-popular-game-types .game-card-title {
        font-size: 1.6em;
    }
    .page-index-popular-game-types .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-popular-game-types .hero-section {
        padding: 80px 0;
    }
    .page-index-popular-game-types .hero-title {
        font-size: 2.2em;
    }
    .page-index-popular-game-types .hero-subtitle {
        font-size: 1em;
    }
    .page-index-popular-game-types .section-title {
        font-size: 2em;
    }
    .page-index-popular-game-types .section-description {
        font-size: 0.95em;
    }
    .page-index-popular-game-types .game-card {
        padding: 20px;
    }
    .page-index-popular-game-types .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-popular-game-types .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .page-index-popular-game-types .hero-section {
        padding: 60px 0;
    }
    .page-index-popular-game-types .hero-title {
        font-size: 1.8em;
    }
    .page-index-popular-game-types .section-title {
        font-size: 1.8em;
    }
    .page-index-popular-game-types .game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-popular-game-types .game-card-image {
        height: 180px;
    }
    .page-index-popular-game-types .benefits-list li {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-index-popular-game-types .call-to-action-text {
        font-size: 1.1em;
    }
}