/* style/index-qh88-game-types-overview.css */
.page-index-qh88-game-types-overview {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-index-qh88-game-types-overview .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #304E72 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-qh88-game-types-overview .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-index-qh88-game-types-overview .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-index-qh88-game-types-overview .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-index-qh88-game-types-overview .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-index-qh88-game-types-overview .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Dark blue text on gold */
}

.page-index-qh88-game-types-overview .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-qh88-game-types-overview .btn-secondary {
    background-color: #0A2342; /* Dark blue */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index-qh88-game-types-overview .btn-secondary:hover {
    background-color: #1a3a5e; /* Slightly lighter dark blue */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-qh88-game-types-overview section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index-qh88-game-types-overview section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-index-qh88-game-types-overview h2 {
    font-size: 2.5em;
    color: #0A2342; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-qh88-game-types-overview h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-index-qh88-game-types-overview h3 {
    font-size: 1.8em;
    color: #0A2342; /* Dark blue */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-qh88-game-types-overview .introduction-section p,
.page-index-qh88-game-types-overview .game-category p,
.page-index-qh88-game-types-overview .responsible-gaming p,
.page-index-qh88-game-types-overview .faq-item p {
    font-size: 1.1em;
    color: #444;
}

.page-index-qh88-game-types-overview .image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-index-qh88-game-types-overview .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-qh88-game-types-overview .game-category {
    margin-bottom: 50px;
    border-left: 5px solid #FFD700; /* Gold border */
    padding-left: 20px;
}

.page-index-qh88-game-types-overview .game-category ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-index-qh88-game-types-overview .game-category ul li {
    background-color: #f3f3f3;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-index-qh88-game-types-overview .game-category ul li::before {
    content: '✔️';
    margin-right: 10px;
    color: #0A2342;
    font-weight: bold;
}

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

.page-index-qh88-game-types-overview .why-choose-qh88 .reason-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-qh88-game-types-overview .why-choose-qh88 .reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-qh88-game-types-overview .why-choose-qh88 .reason-item h3 {
    color: #0A2342;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-qh88-game-types-overview .why-choose-qh88 .reason-item p {
    font-size: 1em;
    color: #555;
    flex-grow: 1;
}

.page-index-qh88-game-types-overview .how-to-get-started ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-index-qh88-game-types-overview .how-to-get-started ol li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.page-index-qh88-game-types-overview .how-to-get-started ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700; /* Gold background */
    color: #0A2342; /* Dark blue text */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-qh88-game-types-overview .how-to-get-started ol li h3 {
    margin-top: 0;
    color: #0A2342;
}

.page-index-qh88-game-types-overview .how-to-get-started ol li p {
    color: #555;
}

.page-index-qh88-game-types-overview .responsible-gaming ul {
    list-style: disc;
    padding-left: 25px;
    color: #555;
}

.page-index-qh88-game-types-overview .responsible-gaming ul li {
    margin-bottom: 10px;
}

.page-index-qh88-game-types-overview .faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-qh88-game-types-overview .faq-item h3 {
    color: #0A2342;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-qh88-game-types-overview .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
}

.page-index-qh88-game-types-overview .faq-item.active h3::after {
    content: '-';
}

.page-index-qh88-game-types-overview .faq-item p {
    display: none;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: #666;
}

.page-index-qh88-game-types-overview .faq-item.active p {
    display: block;
}

.page-index-qh88-game-types-overview .cta-section {
    background-color: #0A2342; /* Dark blue background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.page-index-qh88-game-types-overview .cta-section h2 {
    color: #FFD700; /* Gold */
}

.page-index-qh88-game-types-overview .cta-section p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.page-index-qh88-game-types-overview .cta-buttons .btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-qh88-game-types-overview .hero-section h1 {
        font-size: 2.8em;
    }
    .page-index-qh88-game-types-overview h2 {
        font-size: 2em;
    }
    .page-index-qh88-game-types-overview h3 {
        font-size: 1.6em;
    }
    .page-index-qh88-game-types-overview .why-choose-qh88 .reason-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-qh88-game-types-overview .hero-section {
        padding: 80px 0;
    }
    .page-index-qh88-game-types-overview .hero-section h1 {
        font-size: 2.2em;
    }
    .page-index-qh88-game-types-overview .hero-section p {
        font-size: 1em;
    }
    .page-index-qh88-game-types-overview .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-qh88-game-types-overview .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-index-qh88-game-types-overview .cta-buttons .btn {
        display: block;
        margin: 15px auto;
    }
    .page-index-qh88-game-types-overview h2 {
        font-size: 1.8em;
    }
    .page-index-qh88-game-types-overview h3 {
        font-size: 1.4em;
    }
    .page-index-qh88-game-types-overview .game-category {
        padding-left: 15px;
    }
    .page-index-qh88-game-types-overview .how-to-get-started ol li {
        padding-left: 50px;
    }
    .page-index-qh88-game-types-overview .how-to-get-started ol li::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-index-qh88-game-types-overview .hero-section h1 {
        font-size: 1.8em;
    }
    .page-index-qh88-game-types-overview .hero-section p {
        font-size: 0.9em;
    }
    .page-index-qh88-game-types-overview .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-qh88-game-types-overview h2 {
        font-size: 1.5em;
    }
    .page-index-qh88-game-types-overview h3 {
        font-size: 1.2em;
    }
}