/* style/-g.css */

/* Biến CSS */
:root {
    --page-g-primary-color: #002060;
    --page-g-secondary-color: #FFD700;
    --page-g-text-dark: #333333;
    --page-g-text-light: #ffffff;
    --page-g-background-light: #f8f8f8;
    --page-g-background-dark: #001a4e;
    --page-g-border-color: #e0e0e0;
}

.page--g {
    font-family: 'Arial', sans-serif;
    color: var(--page-g-text-dark);
    line-height: 1.6;
}

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

.page--g__section {
    padding: 60px 0;
    background-color: var(--page-g-background-light);
}

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

.page--g h1,
.page--g h2,
.page--g h3 {
    color: var(--page-g-primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page--g h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--page-g-text-light);
}

.page--g h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.page--g h3 {
    font-size: 1.8em;
    margin-top: 30px;
}

.page--g p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page--g ul,
.page--g ol {
    margin-bottom: 15px;
    padding-left: 25px;
    font-size: 1.05em;
}

.page--g ul li,
.page--g ol li {
    margin-bottom: 8px;
}

.page--g a {
    color: var(--page-g-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page--g a:hover {
    color: var(--page-g-secondary-color);
    text-decoration: underline;
}

/* Buttons */
.page--g__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page--g__btn--primary {
    background-color: var(--page-g-secondary-color);
    color: var(--page-g-primary-color);
}

.page--g__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page--g__btn--secondary {
    background-color: var(--page-g-primary-color);
    color: var(--page-g-secondary-color);
    border: 2px solid var(--page-g-secondary-color);
}

.page--g__btn--secondary:hover {
    background-color: var(--page-g-background-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.page--g__btn--large {
    padding: 18px 35px;
    font-size: 1.25em;
}

/* Hero Section */
.page--g__hero {
    background: linear-gradient(135deg, var(--page-g-primary-color) 0%, #003399 100%); /* Darker blue gradient */
    color: var(--page-g-text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page--g__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
}

.page--g__hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page--g__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page--g__hero-image-wrapper {
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page--g__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Blocks with Image */
.page--g__section.page--g__rules .page--g__container,
.page--g__section.page--g__types .page--g__container,
.page--g__section.page--g__strategies .page--g__container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.page--g__content-block {
    flex: 1;
}

.page--g__image-block {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page--g__image-block .page--g__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page--g__section.page--g__types .page--g__container {
    flex-direction: row-reverse; /* Image on left, text on right */
}

/* Livestream Section */
.page--g__livestream-features {
    background-color: var(--page-g-background-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g__livestream-features h3 {
    color: var(--page-g-primary-color);
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.page--g__livestream-features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.page--g__livestream-features ul li {
    margin-bottom: 10px;
}

/* CTA Block */
.page--g__cta-block {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page--g__faq-item {
    background-color: #ffffff;
    border: 1px solid var(--page-g-border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page--g__faq-item h3 {
    color: var(--page-g-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Final CTA Section */
.page--g__cta--final {
    background: linear-gradient(90deg, var(--page-g-primary-color), var(--page-g-background-dark));
    color: var(--page-g-text-light);
    text-align: center;
    padding: 80px 0;
}

.page--g__cta--final h2 {
    color: var(--page-g-secondary-color);
    font-size: 3em;
}

.page--g__cta--final p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page--g__final-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page--g__hero {
        flex-direction: column-reverse;
        padding: 80px 20px;
        text-align: center;
    }

    .page--g__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page--g__hero-actions {
        justify-content: center;
    }

    .page--g__hero-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin-bottom: 30px;
    }

    .page--g__section.page--g__rules .page--g__container,
    .page--g__section.page--g__types .page--g__container,
    .page--g__section.page--g__strategies .page--g__container {
        flex-direction: column;
        align-items: center;
    }

    .page--g__image-block {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .page--g h1 {
        font-size: 2.5em;
    }

    .page--g h2 {
        font-size: 2em;
    }

    .page--g h3 {
        font-size: 1.6em;
    }

    .page--g__cta--final h2 {
        font-size: 2.5em;
    }

    .page--g__cta--final p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page--g__section {
        padding: 40px 0;
    }

    .page--g h1 {
        font-size: 2em;
    }

    .page--g h2 {
        font-size: 1.8em;
    }

    .page--g h3 {
        font-size: 1.4em;
    }

    .page--g p {
        font-size: 1em;
    }

    .page--g__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page--g__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page--g__hero-actions {
        flex-direction: column;
    }

    .page--g__final-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page--g__container {
        padding: 0 15px;
    }

    .page--g h1 {
        font-size: 1.8em;
    }

    .page--g h2 {
        font-size: 1.6em;
    }

    .page--g h3 {
        font-size: 1.3em;
    }

    .page--g__hero {
        padding: 60px 15px;
    }

    .page--g__cta--final h2 {
        font-size: 2em;
    }
}