/* style/download-app-mobile-betting.css */

.page-download-app-mobile-betting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f7fa;
}

.page-download-app-mobile-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download-app-mobile-betting__highlight {
    color: #0D47A1;
    font-weight: bold;
}

/* Hero Section */
.page-download-app-mobile-betting__hero-section {
    background: linear-gradient(135deg, #0D47A1, #1A5FB4);
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    text-align: left;
    min-height: 600px;
}

.page-download-app-mobile-betting__hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.page-download-app-mobile-betting__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-download-app-mobile-betting__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
    transition: transform 0.3s ease-in-out;
}

.page-download-app-mobile-betting__hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.page-download-app-mobile-betting__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD600; /* High contrast for title */
}

.page-download-app-mobile-betting__main-title .page-download-app-mobile-betting__highlight {
    color: #ffffff;
}

.page-download-app-mobile-betting__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-download-app-mobile-betting__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-download-app-mobile-betting__btn--primary {
    background-color: #FFD600;
    color: #0D47A1;
    border: 2px solid #FFD600;
}

.page-download-app-mobile-betting__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-download-app-mobile-betting__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-download-app-mobile-betting__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFD600;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-download-app-mobile-betting__features-section,
.page-download-app-mobile-betting__app-overview-section,
.page-download-app-mobile-betting__download-guide-section,
.page-download-app-mobile-betting__benefits-section,
.page-download-app-mobile-betting__faq-section,
.page-download-app-mobile-betting__contact-cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-download-app-mobile-betting__features-section,
.page-download-app-mobile-betting__download-guide-section,
.page-download-app-mobile-betting__faq-section {
    background-color: #ffffff;
}

.page-download-app-mobile-betting__app-overview-section,
.page-download-app-mobile-betting__benefits-section,
.page-download-app-mobile-betting__contact-cta-section {
    background-color: #f5f7fa;
}

.page-download-app-mobile-betting__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0D47A1;
}

.page-download-app-mobile-betting__section-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

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

.page-download-app-mobile-betting__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-app-mobile-betting__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-app-mobile-betting__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-download-app-mobile-betting__feature-title {
    font-size: 1.5em;
    color: #0D47A1;
    margin-bottom: 15px;
}

.page-download-app-mobile-betting__feature-text {
    color: #666;
    font-size: 1em;
}

.page-download-app-mobile-betting__cta-bottom {
    margin-top: 60px;
}

/* App Overview Grid */
.page-download-app-mobile-betting__overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-app-mobile-betting__overview-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-app-mobile-betting__overview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-app-mobile-betting__overview-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-download-app-mobile-betting__overview-title {
    font-size: 1.4em;
    color: #0D47A1;
    margin-bottom: 10px;
}

.page-download-app-mobile-betting__overview-text {
    color: #666;
    font-size: 0.95em;
}

/* Download Guide Section */
.page-download-app-mobile-betting__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-download-app-mobile-betting__step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-download-app-mobile-betting__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #FFD600;
    color: #0D47A1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-app-mobile-betting__step-title {
    font-size: 1.6em;
    color: #0D47A1;
    margin-bottom: 15px;
}

.page-download-app-mobile-betting__step-text {
    color: #666;
    font-size: 1em;
}

.page-download-app-mobile-betting__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.page-download-app-mobile-betting__inline-link {
    color: #0D47A1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-download-app-mobile-betting__inline-link:hover {
    color: #FFD600;
    text-decoration: underline;
}

/* Benefits Section */
.page-download-app-mobile-betting__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-app-mobile-betting__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-app-mobile-betting__benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-app-mobile-betting__benefit-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-download-app-mobile-betting__benefit-title {
    font-size: 1.5em;
    color: #0D47A1;
    margin-bottom: 15px;
}

.page-download-app-mobile-betting__benefit-text {
    color: #666;
    font-size: 1em;
}

/* FAQ Section */
.page-download-app-mobile-betting__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-download-app-mobile-betting__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-download-app-mobile-betting__faq-question {
    font-size: 1.3em;
    color: #0D47A1;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-download-app-mobile-betting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD600;
}

.page-download-app-mobile-betting__faq-question.active::after {
    content: '-';
}

.page-download-app-mobile-betting__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-download-app-mobile-betting__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

/* Contact CTA Section */
.page-download-app-mobile-betting__contact-cta-section {
    background-color: #0D47A1;
    color: #ffffff;
    padding: 100px 0;
}

.page-download-app-mobile-betting__contact-cta-section .page-download-app-mobile-betting__section-title,
.page-download-app-mobile-betting__contact-cta-section .page-download-app-mobile-betting__section-description {
    color: #ffffff;
}

.page-download-app-mobile-betting__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 40px;
}

.page-download-app-mobile-betting__contact-text {
    margin-top: 30px;
    font-size: 1.1em;
    opacity: 0.9;
}

.page-download-app-mobile-betting__contact-text .page-download-app-mobile-betting__inline-link {
    color: #FFD600;
}

.page-download-app-mobile-betting__contact-text .page-download-app-mobile-betting__inline-link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-app-mobile-betting__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
        min-height: auto;
    }

    .page-download-app-mobile-betting__hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .page-download-app-mobile-betting__hero-image-wrapper {
        order: -1; /* Image above text on mobile */
        margin-bottom: 40px;
    }

    .page-download-app-mobile-betting__main-title {
        font-size: 2.8em;
    }

    .page-download-app-mobile-betting__subtitle {
        font-size: 1.1em;
    }

    .page-download-app-mobile-betting__section-title {
        font-size: 2.2em;
    }

    .page-download-app-mobile-betting__features-grid,
    .page-download-app-mobile-betting__overview-grid,
    .page-download-app-mobile-betting__guide-steps,
    .page-download-app-mobile-betting__benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-download-app-mobile-betting__hero-section {
        padding: 40px 0;
    }

    .page-download-app-mobile-betting__main-title {
        font-size: 2.2em;
    }

    .page-download-app-mobile-betting__subtitle {
        font-size: 1em;
    }

    .page-download-app-mobile-betting__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-download-app-mobile-betting__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-download-app-mobile-betting__section-title {
        font-size: 1.8em;
    }

    .page-download-app-mobile-betting__features-section,
    .page-download-app-mobile-betting__app-overview-section,
    .page-download-app-mobile-betting__download-guide-section,
    .page-download-app-mobile-betting__benefits-section,
    .page-download-app-mobile-betting__faq-section,
    .page-download-app-mobile-betting__contact-cta-section {
        padding: 50px 0;
    }

    .page-download-app-mobile-betting__faq-item {
        padding: 20px;
    }

    .page-download-app-mobile-betting__faq-question {
        font-size: 1.1em;
    }

    .page-download-app-mobile-betting__faq-answer {
        font-size: 0.95em;
    }

    .page-download-app-mobile-betting__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}