/* style/-g.css */

/* Variables */
:root {
    --page-g-primary-color: #FFD700; /* Gold */
    --page-g-secondary-color: #00008B; /* Dark Blue */
    --page-g-text-dark: #333;
    --page-g-text-light: #fff;
    --page-g-background-light: #f9f9f9;
    --page-g-background-dark: #00008B;
}

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

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

.page--g .section-title {
    font-size: 2.5em;
    color: var(--page-g-secondary-color);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page--g .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page--g .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page--g .btn-primary {
    background-color: var(--page-g-primary-color);
    color: var(--page-g-secondary-color); /* Dark blue text on gold button */
    border: 2px solid var(--page-g-primary-color);
}

.page--g .btn-primary:hover {
    background-color: #e6c200;
    color: var(--page-g-secondary-color);
    border-color: #e6c200;
}

.page--g .btn-secondary {
    background-color: transparent;
    color: var(--page-g-primary-color);
    border: 2px solid var(--page-g-primary-color);
    margin-left: 15px;
}

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

.page--g .btn-outline {
    background-color: transparent;
    color: var(--page-g-secondary-color);
    border: 2px solid var(--page-g-secondary-color);
    padding: 8px 15px;
    font-size: 0.9em;
}

.page--g .btn-outline:hover {
    background-color: var(--page-g-secondary-color);
    color: var(--page-g-primary-color);
}

.page--g .btn-lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page--g .hero-section {
    background: linear-gradient(135deg, var(--page-g-secondary-color) 0%, #1a1a4a 100%); /* Dark blue gradient */
    color: var(--page-g-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.page--g .hero-content {
    max-width: 600px;
    text-align: left;
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.page--g .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-g-primary-color); /* Gold title */
}

.page--g .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page--g .hero-actions {
    display: flex;
    gap: 15px;
}

.page--g .hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page--g .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page--g .intro-section {
    background-color: var(--page-g-background-light);
    padding: 60px 0;
}

.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: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page--g .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page--g .feature-title {
    font-size: 1.5em;
    color: var(--page-g-secondary-color);
    margin-bottom: 10px;
}

.page--g .feature-text {
    color: #666;
}

/* Guide Section */
.page--g .guide-section {
    background-color: #f0f2f5;
    padding: 60px 0;
}

.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: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page--g .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--page-g-primary-color);
    color: var(--page-g-secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid var(--page-g-secondary-color);
}

.page--g .step-title {
    font-size: 1.4em;
    color: var(--page-g-secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page--g .step-text {
    color: #666;
    margin-bottom: 20px;
}

/* Types of Betting Section */
.page--g .types-of-betting-section {
    background-color: var(--page-g-background-light);
    padding: 60px 0;
}

.page--g .betting-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page--g .betting-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page--g .betting-title {
    font-size: 1.3em;
    color: var(--page-g-secondary-color);
    margin-bottom: 10px;
}

.page--g .betting-text {
    color: #666;
}

/* Tips Section */
.page--g .tips-section {
    background-color: #f0f2f5;
    padding: 60px 0;
}

.page--g .tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page--g .tip-item {
    background-color: #fff;
    padding: 25px;
    border-left: 5px solid var(--page-g-primary-color);
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page--g .tip-title {
    font-size: 1.3em;
    color: var(--page-g-secondary-color);
    margin-bottom: 10px;
}

.page--g .tip-text {
    color: #666;
    margin-bottom: 15px;
}

.page--g .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page--g .promotions-section {
    background-color: var(--page-g-secondary-color);
    color: var(--page-g-text-light);
    padding: 60px 0;
}

.page--g .promotions-section .section-title {
    color: var(--page-g-primary-color);
}

.page--g .promotions-section .section-description {
    color: #e0e0e0;
}

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

.page--g .promo-item {
    background-color: #1a1a4a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page--g .promo-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page--g .promo-title {
    font-size: 1.5em;
    color: var(--page-g-primary-color);
    margin-bottom: 10px;
}

.page--g .promo-text {
    color: #ccc;
    margin-bottom: 20px;
}

/* Security Section */
.page--g .security-section {
    background-color: var(--page-g-background-light);
    padding: 60px 0;
}

.page--g .security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page--g .security-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
    border-left: 4px solid var(--page-g-secondary-color);
}

.page--g .security-item strong {
    color: var(--page-g-secondary-color);
}

/* Mobile App Section */
.page--g .mobile-app-section {
    background-color: #f0f2f5;
    padding: 60px 0;
    text-align: center;
}

.page--g .app-download-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page--g .btn-download {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--page-g-secondary-color);
    color: var(--page-g-primary-color);
    border-color: var(--page-g-secondary-color);
}

.page--g .btn-download:hover {
    background-color: #1a1a4a;
    border-color: #1a1a4a;
    color: var(--page-g-primary-color);
}

.page--g .download-icon {
    width: 24px;
    height: 24px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page--g .app-showcase-image {
    max-width: 500px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.page--g .cta-section {
    background: var(--page-g-secondary-color);
    color: var(--page-g-text-light);
    padding: 80px 0;
    text-align: center;
}

.page--g .cta-section .section-title {
    color: var(--page-g-primary-color);
}

.page--g .cta-section .section-description {
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page--g .hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page--g .hero-content {
        text-align: center;
        padding: 0;
    }

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

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

    .page--g .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .page--g .btn-secondary {
        margin-left: 0;
    }

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

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

    .page--g .features-grid, 
    .page--g .steps-grid, 
    .page--g .promo-grid, 
    .page--g .betting-list, 
    .page--g .security-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page--g .hero-title {
        font-size: 2.2em;
    }

    .page--g .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page--g .btn-lg {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page--g .app-download-buttons {
        flex-direction: column;
        gap: 15px;
    }
}