/* style/index-core-game-types.css */
.page-index-core-game-types {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1A2D; /* A slightly lighter variant of main color for overall background */
}

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

.page-index-core-game-types .hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%);
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-index-core-game-types .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,dark_blue,gold_accents,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-core-game-types .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-index-core-game-types .hero-title {
    font-size: 3.5em;
    color: #F0B90B; /* Accent color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-core-game-types .hero-title .highlight {
    color: #FFFFFF;
}

.page-index-core-game-types .hero-description {
    font-size: 1.2em;
    color: #B0B0B0; /* Slightly darker light gray for description */
    margin-bottom: 40px;
}

.page-index-core-game-types .cta-group .btn {
    margin: 0 15px;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-core-game-types .btn-primary {
    background-color: #F0B90B;
    color: #1A2B4C;
    border: 2px solid #F0B90B;
}

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

.page-index-core-game-types .btn-secondary {
    background-color: transparent;
    color: #F0B90B;
    border: 2px solid #F0B90B;
}

.page-index-core-game-types .btn-secondary:hover {
    background-color: #F0B90B;
    color: #1A2B4C;
    transform: translateY(-3px);
}

.page-index-core-game-types .section-title {
    font-size: 2.8em;
    color: #F0B90B;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-core-game-types .section-title .highlight {
    color: #FFFFFF;
}

.page-index-core-game-types .paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #E0E0E0;
}

.page-index-core-game-types .about-ga888-section,
.page-index-core-game-types .game-types-overview,
.page-index-core-game-types .why-choose-ga888-section,
.page-index-core-game-types .promotions-section,
.page-index-core-game-types .getting-started-section,
.page-index-core-game-types .responsible-gambling-section,
.page-index-core-game-types .faq-section,
.page-index-core-game-types .final-cta-section {
    padding: 80px 0;
    background-color: #1A2B4C; /* Main dark background for sections */
    border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.page-index-core-game-types .game-types-overview {
    background-color: #0F1A2D;
}

.page-index-core-game-types .game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-core-game-types .game-category-card {
    background-color: #243B55; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-game-types .game-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-core-game-types .card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-index-core-game-types .card-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-index-core-game-types .card-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 25px;
    text-align: justify;
}

.page-index-core-game-types .btn-tertiary {
    background-color: #F0B90B;
    color: #1A2B4C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.page-index-core-game-types .btn-tertiary:hover {
    background-color: #E0A800;
}

.page-index-core-game-types .other-games-info {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed rgba(240, 185, 11, 0.3);
}

.page-index-core-game-types .other-games-info .subtitle {
    font-size: 2.2em;
    color: #F0B90B;
    margin-bottom: 20px;
}

.page-index-core-game-types .other-games-info .btn-primary {
    margin-top: 30px;
}

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

.page-index-core-game-types .feature-item {
    background-color: #243B55;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-index-core-game-types .feature-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-index-core-game-types .feature-description {
    font-size: 1em;
    color: #C0C0C0;
    text-align: justify;
}

.page-index-core-game-types .app-image {
    max-width: 180px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-types .cta-group-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-index-core-game-types .promotions-section {
    background-color: #0F1A2D;
}

.page-index-core-game-types .promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-index-core-game-types .promo-list li {
    background-color: #243B55;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.8;
}

.page-index-core-game-types .promo-list li strong {
    color: #F0B90B;
}

.page-index-core-game-types .getting-started-section {
    background-color: #1A2B4C;
}

.page-index-core-game-types .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-core-game-types .step-item {
    background-color: #243B55;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-types .step-icon {
    width: 60px;
    height: 60px;
    background-color: #F0B90B;
    color: #1A2B4C;
    font-size: 2.2em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-types .step-title {
    font-size: 1.6em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-index-core-game-types .step-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-core-game-types .btn-link {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-core-game-types .btn-link:hover {
    color: #E0A800;
    text-decoration: underline;
}

.page-index-core-game-types .responsible-gambling-section {
    background-color: #0F1A2D;
    text-align: center;
}

.page-index-core-game-types .faq-section {
    background-color: #1A2B4C;
}

.page-index-core-game-types .faq-item {
    background-color: #243B55;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-core-game-types .faq-question {
    font-size: 1.4em;
    color: #F0B90B;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-core-game-types .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #F0B90B;
}

.page-index-core-game-types .faq-question.active::after {
    content: '-';
}

.page-index-core-game-types .faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    text-align: justify;
}

.page-index-core-game-types .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: 15px;
}

.page-index-core-game-types .cta-group-faq {
    text-align: center;
    margin-top: 40px;
}

.page-index-core-game-types .final-cta-section {
    background-color: #0F1A2D;
    text-align: center;
    padding-bottom: 100px;
}

.page-index-core-game-types .btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 8px;
}

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

@media (max-width: 768px) {
    .page-index-core-game-types .hero-section {
        padding: 80px 0;
    }
    .page-index-core-game-types .hero-title {
        font-size: 2.2em;
    }
    .page-index-core-game-types .hero-description {
        font-size: 1em;
    }
    .page-index-core-game-types .cta-group .btn {
        margin: 10px 0;
        width: 100%;
        display: block;
    }
    .page-index-core-game-types .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-index-core-game-types .game-category-grid,
    .page-index-core-game-types .features-grid,
    .page-index-core-game-types .steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-core-game-types .about-ga888-section,
    .page-index-core-game-types .game-types-overview,
    .page-index-core-game-types .why-choose-ga888-section,
    .page-index-core-game-types .promotions-section,
    .page-index-core-game-types .getting-started-section,
    .page-index-core-game-types .responsible-gambling-section,
    .page-index-core-game-types .faq-section,
    .page-index-core-game-types .final-cta-section {
        padding: 60px 0;
    }
    .page-index-core-game-types .promo-list li,
    .page-index-core-game-types .faq-item {
        padding: 18px;
    }
    .page-index-core-game-types .faq-question {
        font-size: 1.2em;
    }
    .page-index-core-game-types .step-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-index-core-game-types .hero-title {
        font-size: 1.8em;
    }
    .page-index-core-game-types .section-title {
        font-size: 1.6em;
    }
    .page-index-core-game-types .hero-content,
    .page-index-core-game-types .game-category-card,
    .page-index-core-game-types .feature-item,
    .page-index-core-game-types .step-item,
    .page-index-core-game-types .faq-item {
        padding: 20px;
    }
    .page-index-core-game-types .btn-large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}