/* style/-g.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #DC143C; /* Crimson Red */
    --dark-background: #1A1A1A;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --card-background: #282828;
    --border-color: #444444;
    --button-hover-color: #E0B500;
}

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

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

.page--g__section {
    padding: 60px 0;
    text-align: center;
}

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

.page--g h1, .page--g h2, .page--g h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page--g h3 {
    font-size: 1.8em;
    color: var(--text-light);
}

.page--g p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

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

/* Hero Section */
.page--g__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-background) 0%, #333333 100%);
    overflow: hidden;
    text-align: center;
}

.page--g__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.page--g__hero-content {
    margin-bottom: 40px;
}

.page--g__hero-content h1 {
    font-size: 3.8em;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g__hero-content p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page--g__hero-image {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page--g__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 1.4em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page--g__cta-button:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page--g__cta-button--large {
    font-size: 1.6em;
    padding: 20px 50px;
    margin-top: 30px;
}

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

.page--g__feature-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 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(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page--g__feature-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 8px;
}

.page--g__feature-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

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

/* Type Cards */
.page--g__type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__card {
    background-color: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page--g__card h3 {
    padding: 20px 20px 0;
    font-size: 1.5em;
    color: var(--primary-color);
}

.page--g__card h3 a {
    color: var(--primary-color);
}

.page--g__card h3 a:hover {
    color: var(--secondary-color);
}

.page--g__card p {
    padding: 0 20px 20px;
    color: #CCCCCC;
    font-size: 1em;
}

/* How-to-Play Steps */
.page--g__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__step-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g__step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page--g__step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 8px;
}

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

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

.page--g__small-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page--g__small-cta-button:hover {
    background-color: var(--button-hover-color);
    transform: translateY(-2px);
}

.page--g__play-now-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 40px;
    color: var(--primary-color);
}

/* Betting Tips List */
.page--g__betting-tips ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page--g__betting-tips li {
    background-color: var(--card-background);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #E0E0E0;
}

.page--g__betting-tips li strong {
    color: var(--primary-color);
}

/* Promotions */
.page--g__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__card--promo {
    text-align: center;
}

.page--g__card--promo h3 {
    padding-top: 20px;
}

.page--g__card--promo h3 a {
    color: var(--primary-color);
}

.page--g__card--promo h3 a:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.page--g__faq .faq-list {
    margin-top: 40px;
    text-align: left;
}

.page--g__faq .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page--g__faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--card-background);
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.page--g__faq .faq-question:hover {
    background-color: #3A3A3A;
}

.page--g__faq .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
}

.page--g__faq .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page--g__faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page--g__faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #282828;
    padding: 0 25px;
    color: #E0E0E0;
}

.page--g__faq .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 25px;
    border-top: none;
}

.page--g__faq .faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page--g__hero-content h1 {
        font-size: 3em;
    }
    .page--g h2 {
        font-size: 2em;
    }
    .page--g__cta-button {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page--g__hero-section {
        padding: 60px 15px;
    }
    .page--g__hero-content h1 {
        font-size: 2.5em;
    }
    .page--g__hero-content p {
        font-size: 1.1em;
    }
    .page--g h1 {
        font-size: 2.2em;
    }
    .page--g h2 {
        font-size: 1.8em;
    }
    .page--g h3 {
        font-size: 1.4em;
    }
    .page--g__section {
        padding: 40px 0;
    }
    .page--g__features-grid, .page--g__type-cards, .page--g__steps-grid, .page--g__promo-cards {
        grid-template-columns: 1fr;
    }
    .page--g__feature-icon, .page--g__step-icon {
        width: 80px;
        height: 80px;
    }
    .page--g__card-image {
        height: 180px;
    }
    .page--g__faq .faq-question {
        padding: 15px 20px;
    }
    .page--g__faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page--g__faq .faq-toggle {
        font-size: 1.5em;
    }
    .page--g__faq .faq-answer {
        padding: 0 20px;
    }
    .page--g__faq .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page--g__hero-content h1 {
        font-size: 2em;
    }
    .page--g__hero-content p {
        font-size: 1em;
    }
    .page--g__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page--g__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page--g h1 {
        font-size: 1.8em;
    }
    .page--g h2 {
        font-size: 1.5em;
    }
    .page--g h3 {
        font-size: 1.2em;
    }
    .page--g p {
        font-size: 0.95em;
    }
    .page--g__feature-item, .page--g__card, .page--g__step-item {
        padding: 20px;
    }
    .page--g__betting-tips li {
        font-size: 0.95em;
        padding: 15px;
    }
}