/* style/-g.css */
.page--g {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page--g .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page--g .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page--g .btn-primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page--g .btn-primary:hover {
    background-color: #e6b800;
    color: #003366;
}

.page--g .btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page--g .btn-secondary:hover {
    background-color: #002244;
    color: #FFCC00;
}

.page--g .btn-outline {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page--g .btn-outline:hover {
    background-color: #003366;
    color: #ffffff;
}

.page--g .section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page--g .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page--g .sub-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page--g .text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page--g .hero-section {
    background: linear-gradient(135deg, #003366, #0055aa);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page--g .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.page--g .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page--g .hero-section .container {
    position: relative;
    z-index: 1;
}

.page--g .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g .hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page--g .hero-section .btn {
    font-size: 1.2em;
    padding: 15px 35px;
}

.page--g .section-intro, .page--g .section-benefits, .page--g .section-guide, .page--g .section-betting-method, .page--g .section-strategy, .page--g .section-promotions, .page--g .section-app-download, .page--g .section-faq, .page--g .section-conclusion {
    padding: 60px 0;
}

.page--g .section-intro, .page--g .section-betting-method, .page--g .section-promotions, .page--g .section-conclusion {
    background-color: #ffffff;
}

.page--g .benefit-list, .page--g .step-list, .page--g .strategy-list, .page--g .promotion-list, .page--g .app-benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page--g .benefit-item, .page--g .step-item, .page--g .strategy-item, .page--g .promotion-item, .page--g .app-benefit-item {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    position: relative;
    font-size: 1.1em;
    color: #444;
}

.page--g .benefit-item::before, .page--g .step-item::before, .page--g .strategy-item::before, .page--g .promotion-item::before, .page--g .app-benefit-item::before {
    content: '\2713'; /* Checkmark */
    color: #FFCC00;
    font-size: 1.5em;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.page--g .step-list .step-item {
    background-color: #f0f4f7;
    box-shadow: none;
    border-left: 4px solid #003366;
}

.page--g .step-list .step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #003366;
    color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    margin-right: 15px;
}

.page--g .guide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.page--g .guide-text {
    flex: 2;
    min-width: 300px;
}

.page--g .guide-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page--g .img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page--g .image-center {
    text-align: center;
    margin: 30px 0;
}

.page--g .image-caption {
    font-style: italic;
    color: #777;
    margin-top: 10px;
    font-size: 0.95em;
}

.page--g .image-right {
    text-align: right;
    margin: 30px 0;
}

.page--g .section-app-download .app-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page--g .faq-accordion {
    margin-top: 30px;
}

.page--g .faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page--g .faq-question {
    font-size: 1.2em;
    color: #003366;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f4f7;
}

.page--g .faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page--g .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page--g .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #ffffff;
    color: #555;
}

.page--g .faq-answer.open {
    max-height: 300px; /* Adjust as needed */
    padding: 15px 25px;
}

.page--g .section-conclusion {
    text-align: center;
}

.page--g .section-conclusion .text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .page--g .hero-title {
        font-size: 2.5em;
    }
    .page--g .hero-description {
        font-size: 1em;
    }
    .page--g .section-title {
        font-size: 2em;
    }
    .page--g .sub-title {
        font-size: 1.5em;
    }
    .page--g .guide-content {
        flex-direction: column;
    }
    .page--g .guide-text, .page--g .guide-image {
        min-width: unset;
        width: 100%;
    }
    .page--g .faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page--g .hero-title {
        font-size: 2em;
    }
    .page--g .hero-description {
        font-size: 0.9em;
    }
    .page--g .section-title {
        font-size: 1.8em;
    }
    .page--g .sub-title {
        font-size: 1.3em;
    }
    .page--g .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page--g .benefit-item, .page--g .step-item, .page--g .strategy-item, .page--g .promotion-item, .page--g .app-benefit-item {
        padding: 15px;
        font-size: 1em;
    }
}