/* style/-g.css */

/* General Page Styling */
.page--g {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

.page--g__section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page--g__section-title {
    font-size: 3em;
    color: #FFD700; /* Gold primary color */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page--g__section-subtitle {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page--g__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a; /* Dark text for gold background */
    margin: 10px;
}

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

.page--g__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin: 10px;
}

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

.page--g__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
}

.page--g__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
    margin: 15px;
}

.page--g__btn--outline {
    background-color: transparent;
    color: #8B0000; /* Dark Red */
    border: 2px solid #8B0000;
}

.page--g__btn--outline:hover {
    background-color: #8B0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page--g__img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.page--g__highlight {
    color: #FFD700; /* Use primary color for keywords */
    font-weight: bold;
}

/* Hero Section */
.page--g__hero {
    background: linear-gradient(135deg, #8B0000 0%, #4a0000 100%); /* Dark red gradient */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.page--g__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 40px;
    z-index: 1;
}

.page--g__hero-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page--g__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
    max-width: 600px;
}

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

.page--g__hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page--g__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* About Section */
.page--g__about .page--g__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.page--g__about .page--g__text-content {
    flex: 2;
    min-width: 300px;
}

.page--g__about .page--g__text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #ccc;
}

.page--g__about .page--g__image-content {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

/* Features Section */
.page--g__features {
    background-color: #1a1a1a;
}

.page--g__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page--g__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page--g__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page--g__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page--g__feature-item p {
    color: #ccc;
    font-size: 1em;
}

/* How-to-Play Section */
.page--g__how-to-play {
    background-color: #222;
}

.page--g__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page--g__step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: left;
    position: relative;
    padding-top: 80px;
}

.page--g__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #8B0000; /* Dark Red */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page--g__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page--g__step-item p {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Betting Tips Section */
.page--g__betting-tips {
    background-color: #1a1a1a;
}

.page--g__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page--g__tip-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page--g__tip-item:hover {
    transform: translateY(-5px);
}

.page--g__tip-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.page--g__tip-item p {
    color: #ccc;
    font-size: 1em;
}

.page--g__cta {
    margin-top: 60px;
    padding: 40px;
    background-color: #8B0000; /* Dark Red */
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page--g__cta p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Promotions Section */
.page--g__promotions {
    background-color: #222;
}

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

.page--g__promo-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.page--g__promo-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page--g__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page--g__promo-item p {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
}

/* FAQ Section */
.page--g__faq {
    background-color: #1a1a1a;
}

.page--g__faq-items {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page--g__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page--g__faq-question {
    padding: 20px;
    background-color: #333;
    color: #FFD700;
    font-size: 1.3em;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page--g__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page--g__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page--g__faq-answer {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page--g__faq-answer.active {
    max-height: 200px; /* Adjust based on max content */
    padding-top: 15px;
}

/* Call to Action Bottom Section */
.page--g__cta-bottom {
    background: linear-gradient(135deg, #FFD700 0%, #e0b800 100%); /* Gold gradient */
    color: #1a1a1a;
    padding: 80px 0;
}

.page--g__cta-bottom .page--g__section-title {
    color: #1a1a1a;
    text-shadow: none;
}

.page--g__cta-bottom .page--g__section-subtitle {
    color: #444;
}

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

    .page--g__hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .page--g__hero-title {
        font-size: 3.5em;
    }

    .page--g__hero-description {
        font-size: 1.3em;
    }

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

    .page--g__about .page--g__content-grid {
        flex-direction: column;
        text-align: center;
    }

    .page--g__about .page--g__text-content {
        order: 2;
    }

    .page--g__about .page--g__image-content {
        order: 1;
        margin-bottom: 30px;
    }

    .page--g__section-title {
        font-size: 2.5em;
    }
}

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

    .page--g__hero-title {
        font-size: 2.8em;
    }

    .page--g__hero-description {
        font-size: 1.1em;
    }

    .page--g__section-title {
        font-size: 2em;
    }

    .page--g__features-grid,
    .page--g__steps,
    .page--g__tips-grid,
    .page--g__promo-grid {
        grid-template-columns: 1fr;
    }

    .page--g__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page--g__hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

    .page--g__hero-title {
        font-size: 2.2em;
    }

    .page--g__hero-description {
        font-size: 1em;
    }

    .page--g__section-title {
        font-size: 1.8em;
    }

    .page--g__feature-title,
    .page--g__step-title,
    .page--g__tip-title,
    .page--g__promo-title {
        font-size: 1.4em;
    }

    .page--g__faq-question {
        font-size: 1.1em;
    }
}