.page--g {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A202C;
    line-height: 1.6;
    font-size: 16px;
}

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

.page--g__hero {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    color: #1A202C;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page--g__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page--g__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page--g__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page--g__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page--g__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page--g__button--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page--g__button--secondary:hover {
    background-color: #333;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page--g__button--inline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
}

.page--g__button--inline:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page--g__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page--g__section-subtitle {
    font-size: 1.2em;
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page--g__about-cockfighting, .page--g__game-types, .page--g__rules-betting, .page--g__live-stream, .page--g__tips-strategy, .page--g__faq {
    padding: 80px 0;
    background-color: #1A202C;
}

.page--g__about-cockfighting {
    background-color: #2a3341;
}

.page--g__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page--g__content-grid .page--g__text-content {
    flex: 1;
}

.page--g__content-grid .page--g__image-content {
    flex: 1;
    text-align: center;
}

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

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

.page--g__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page--g__card {
    background-color: #2a3341;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page--g__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page--g__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page--g__card-description {
    color: #CCCCCC;
    font-size: 0.95em;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 20px;
}

.page--g__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    margin-top: auto; /* Push button to bottom */
}

.page--g__rules-betting {
    background-color: #1A202C;
}

.page--g__content-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.page--g__column {
    flex: 1;
    background-color: #2a3341;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page--g__column-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page--g__column ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page--g__column ul li {
    background-color: #3f4a5c;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #E0E0E0;
}

.page--g__column ul li strong {
    color: #FFD700;
    margin-right: 8px;
}

.page--g__column p {
    color: #CCCCCC;
    font-size: 0.95em;
}

.page--g__cta-full-width {
    background-color: #FFD700;
    color: #1A202C;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page--g__cta-full-width p {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1A202C;
}

.page--g__live-stream {
    background-color: #2a3341;
}

.page--g__tips-strategy {
    background-color: #1A202C;
}

.page--g__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page--g__accordion-item {
    background-color: #2a3341;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page--g__accordion-header {
    background-color: #3f4a5c;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page--g__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page--g__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page--g__accordion-header:hover {
    background-color: #4c5a6d;
}

.page--g__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page--g__accordion-content p {
    padding: 15px 0;
    color: #E0E0E0;
    font-size: 0.95em;
}

.page--g__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page--g__cta-bottom p {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page--g__faq {
    background-color: #2a3341;
}

.page--g__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page--g__faq-item {
    background-color: #1A202C;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page--g__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page--g__faq-answer {
    color: #E0E0E0;
    font-size: 0.95em;
}

@media (max-width: 992px) {
    .page--g__hero-title {
        font-size: 2.8em;
    }
    .page--g__hero-description {
        font-size: 1.1em;
    }
    .page--g__section-title {
        font-size: 2.2em;
    }
    .page--g__content-grid {
        flex-direction: column;
    }
    .page--g__content-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page--g__hero {
        padding: 80px 0;
    }
    .page--g__hero-title {
        font-size: 2.2em;
    }
    .page--g__hero-description {
        font-size: 1em;
    }
    .page--g__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page--g__button {
        width: 80%;
        margin: 0 auto;
    }
    .page--g__section-title {
        font-size: 1.8em;
    }
    .page--g__section-subtitle {
        font-size: 1em;
    }
    .page--g__card-grid {
        grid-template-columns: 1fr;
    }
    .page--g__column {
        padding: 20px;
    }
    .page--g__column-title {
        font-size: 1.6em;
    }
    .page--g__accordion-header {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page--g__faq-question {
        font-size: 1.3em;
    }
    .page--g__cta-full-width p {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 1.8em;
    }
    .page--g__hero-description {
        font-size: 0.9em;
    }
    .page--g__button {
        width: 90%;
    }
    .page--g__section-title {
        font-size: 1.6em;
    }
    .page--g__section-subtitle {
        font-size: 0.9em;
    }
    .page--g__card-title {
        font-size: 1.5em;
    }
    .page--g__column-title {
        font-size: 1.4em;
    }
    .page--g__accordion-header {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    .page--g__faq-question {
        font-size: 1.2em;
    }
    .page--g__cta-full-width p {
        font-size: 1.2em;
    }
    .page--g__faq-item, .page--g__accordion-item {
        padding: 15px;
    }
}