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

.page--g__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page--g__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page--g__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page--g__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page--g__highlight-text {
    color: #0A2463;
    font-weight: bold;
}

.page--g__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page--g__list li {
    margin-bottom: 10px;
    color: #555;
}

/* Hero Section */
.page--g__hero {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page--g__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page--g__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.page--g__hero-actions .page--g__btn {
    margin: 0 10px;
}

/* Buttons */
.page--g__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page--g__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page--g__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page--g__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Content Grid */
.page--g__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page--g__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page--g__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page--g__image-wrapper {
    text-align: center;
}

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

/* Grid 3 Column */
.page--g__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page--g__card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #0A2463;
}

.page--g__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page--g__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.page--g__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__card-description {
    color: #666;
    font-size: 0.95em;
}

/* Betting Options */
.page--g__betting-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.page--g__bet-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page--g__bet-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__bet-description {
    color: #555;
}

/* Promotions Section */
.page--g__promotions .page--g__grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page--g__promo-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid #FFD700;
}

.page--g__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page--g__promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.page--g__promo-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page--g__promo-description {
    color: #666;
    margin-bottom: 20px;
}

.page--g__promo-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

/* FAQ Section */
.page--g__faq-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.page--g__faq-item:hover {
    border-color: #0A2463;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page--g__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page--g__faq-answer {
    color: #555;
    font-size: 1em;
    display: none;
    margin-top: 10px;
}

.page--g__faq-item.active .page--g__faq-answer {
    display: block;
}

/* CTA Section */
.page--g__cta {
    background: #0A2463;
    color: #fff;
    text-align: center;
    padding: 70px 0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page--g__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page--g__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Floating Promo */
.page--g__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    animation: page--g__float-promo 2s ease-in-out infinite;
}

.page--g__floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0A2463;
    font-weight: bold;
    font-size: 1.1em;
    padding-right: 10px;
}

.page--g__floating-text {
    margin-right: 10px;
}

.page--g__floating-close-btn {
    background: none;
    border: none;
    color: #0A2463;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 10px;
    padding: 0 5px;
}

@keyframes page--g__float-promo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.8em;
    }
    .page--g__section-title {
        font-size: 2em;
    }
    .page--g__sub-title {
        font-size: 1.5em;
    }
    .page--g__content-grid {
        grid-template-columns: 1fr;
    }
    .page--g__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page--g__betting-options {
        flex-direction: column;
    }
    .page--g__promotions .page--g__grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page--g__hero {
        padding: 60px 0;
    }
    .page--g__hero-title {
        font-size: 2.2em;
    }
    .page--g__hero-description {
        font-size: 1.1em;
    }
    .page--g__section {
        padding: 40px 0;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__grid-3-col {
        grid-template-columns: 1fr;
    }
    .page--g__floating-promo {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    .page--g__floating-btn {
        font-size: 0.9em;
    }
    .page--g__floating-close-btn {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 1.8em;
    }
    .page--g__hero-description {
        font-size: 1em;
    }
    .page--g__hero-actions .page--g__btn {
        margin: 5px 0;
        display: block;
    }
    .page--g__section-title {
        font-size: 1.5em;
    }
    .page--g__sub-title {
        font-size: 1.3em;
    }
    .page--g__cta-title {
        font-size: 2em;
    }
    .page--g__cta-description {
        font-size: 1em;
    }
    .page--g__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page--g__floating-promo {
        width: calc(100% - 20px);
        left: 10px;
        right: 10px;
        justify-content: center;
        text-align: center;
    }
    .page--g__floating-close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
    }
    .page--g__floating-text {
        flex-grow: 1;
        text-align: center;
    }
}