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

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

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

.page--g__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.page--g__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3459 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page--g__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    overflow: hidden;
}

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

.page--g__hero-section .page--g__container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

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

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

.page--g__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.page--g__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

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

.page--g__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page--g__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page--g__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page--g__list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ffffff;
    position: relative;
    padding-left: 35px;
}

.page--g__list li .page--g__icon {
    position: absolute;
    left: 0;
    top: 5px;
    color: #FFD700;
    font-size: 1.2em;
}

/* Icon styles - using basic shapes for demonstration */
.page--g__icon--check::before { content: '✔'; }
.page--g__icon--star::before { content: '★'; }
.page--g__icon--mobile::before { content: '📱'; }
.page--g__icon--bell::before { content: '🔔'; }
.page--g__icon--shield::before { content: '🛡️'; }
.page--g__icon--stream::before { content: '▶️'; }

.page--g__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}

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

.page--g__step-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page--g__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page--g__step-description {
    font-size: 1em;
    color: #cccccc;
}

.page--g__step-description a {
    color: #FFD700;
    text-decoration: none;
}

.page--g__step-description a:hover {
    text-decoration: underline;
}

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

.page--g__betting-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page--g__betting-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page--g__betting-description {
    font-size: 1em;
    color: #cccccc;
}

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

.page--g__tip-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page--g__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page--g__tip-description {
    font-size: 0.95em;
    color: #cccccc;
}

.page--g__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page--g__rio66-global .page--g__text-content {
    margin-bottom: 30px;
}

.page--g__download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.page--g__download-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page--g__download-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

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

.page--g__faq {
    background-color: #0e203a;
    padding-bottom: 80px;
}

.page--g__faq-item {
    background-color: #1a2a47;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page--g__faq-answer {
    font-size: 1em;
    color: #cccccc;
}

.page--g__call-to-action {
    background-color: #0A192F;
    padding: 80px 0;
}

.page--g__call-to-action .page--g__section-title {
    color: #FFD700;
    margin-bottom: 30px;
}

.page--g__call-to-action .page--g__text-content {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page--g__hero-title {
        font-size: 2.5em;
    }

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

    .page--g__hero-description,
    .page--g__text-content,
    .page--g__list li,
    .page--g__step-description,
    .page--g__betting-description,
    .page--g__tip-description,
    .page--g__faq-answer {
        font-size: 1em;
    }

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

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

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

    .page--g__download-content {
        flex-direction: column;
    }

    .page--g__download-text,
    .page--g__download-image-wrapper {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page--g__hero-title {
        font-size: 2em;
    }

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

    .page--g__btn {
        margin: 5px;
    }
}