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

:root {
    --page-iwin-primary-color: #0A1931;
    --page-iwin-secondary-color: #FFD700;
    --page-iwin-text-light: #FFFFFF;
    --page-iwin-text-dark: #0A1931;
    --page-iwin-background-light: #F8F8F8;
    --page-iwin-background-dark: #0A1931;
}

.page-resources-mobile-betting-app-download-install {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-iwin-text-dark);
    background-color: var(--page-iwin-background-light);
}

.page-resources-mobile-betting-app-download-install__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-mobile-betting-app-download-install__hero-section {
    background: linear-gradient(135deg, var(--page-iwin-primary-color) 0%, #1a345e 100%);
    color: var(--page-iwin-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-mobile-betting-app-download-install__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-iwin-secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-mobile-betting-app-download-install__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-mobile-betting-app-download-install__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-mobile-betting-app-download-install__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-resources-mobile-betting-app-download-install__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-resources-mobile-betting-app-download-install__btn--primary {
    background-color: var(--page-iwin-secondary-color);
    color: var(--page-iwin-primary-color);
    border: 2px solid var(--page-iwin-secondary-color);
}

.page-resources-mobile-betting-app-download-install__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-mobile-betting-app-download-install__btn--secondary {
    background-color: transparent;
    color: var(--page-iwin-secondary-color);
    border: 2px solid var(--page-iwin-secondary-color);
}

.page-resources-mobile-betting-app-download-install__btn--secondary:hover {
    background-color: var(--page-iwin-secondary-color);
    color: var(--page-iwin-primary-color);
    transform: translateY(-2px);
}

.page-resources-mobile-betting-app-download-install__btn--link {
    background-color: var(--page-iwin-primary-color);
    color: var(--page-iwin-secondary-color);
    border: 2px solid var(--page-iwin-primary-color);
}

.page-resources-mobile-betting-app-download-install__btn--link:hover {
    background-color: #1a345e;
    border-color: #1a345e;
    color: var(--page-iwin-secondary-color);
    transform: translateY(-2px);
}

.page-resources-mobile-betting-app-download-install__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-mobile-betting-app-download-install__content-section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-mobile-betting-app-download-install__bg-dark {
    background-color: var(--page-iwin-background-dark);
    color: var(--page-iwin-text-light);
}

.page-resources-mobile-betting-app-download-install__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--page-iwin-secondary-color);
    font-weight: bold;
}

.page-resources-mobile-betting-app-download-install__bg-dark .page-resources-mobile-betting-app-download-install__section-title {
    color: var(--page-iwin-secondary-color);
}

.page-resources-mobile-betting-app-download-install__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-download-install__feature-item {
    background-color: var(--page-iwin-primary-color);
    color: var(--page-iwin-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-resources-mobile-betting-app-download-install__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-mobile-betting-app-download-install__feature-title {
    font-size: 1.8em;
    color: var(--page-iwin-secondary-color);
    margin-bottom: 15px;
}

.page-resources-mobile-betting-app-download-install__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-resources-mobile-betting-app-download-install__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-resources-mobile-betting-app-download-install__step-item {
    background-color: var(--page-iwin-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--page-iwin-text-dark);
}

.page-resources-mobile-betting-app-download-install__step-title {
    font-size: 2em;
    color: var(--page-iwin-primary-color);
    margin-bottom: 15px;
}

.page-resources-mobile-betting-app-download-install__step-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-resources-mobile-betting-app-download-install__cta-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-resources-mobile-betting-app-download-install__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-resources-mobile-betting-app-download-install__feature-item-small {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-resources-mobile-betting-app-download-install__feature-item-small:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-mobile-betting-app-download-install__feature-title-small {
    font-size: 1.5em;
    color: var(--page-iwin-secondary-color);
    margin-bottom: 10px;
}

.page-resources-mobile-betting-app-download-install__bullet-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-resources-mobile-betting-app-download-install__bullet-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.page-resources-mobile-betting-app-download-install__bullet-list li::before {
    content: '✓';
    color: var(--page-iwin-secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-resources-mobile-betting-app-download-install__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-resources-mobile-betting-app-download-install__faq-item {
    background-color: var(--page-iwin-background-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: var(--page-iwin-text-dark);
}

.page-resources-mobile-betting-app-download-install__faq-question {
    font-size: 1.4em;
    color: var(--page-iwin-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-resources-mobile-betting-app-download-install__faq-answer {
    font-size: 1.1em;
    color: #333;
    margin-top: 10px;
}

.page-resources-mobile-betting-app-download-install__cta-bottom {
    padding: 80px 0;
    text-align: center;
}

.page-resources-mobile-betting-app-download-install__cta-title {
    font-size: 3em;
    color: var(--page-iwin-secondary-color);
    margin-bottom: 20px;
}

.page-resources-mobile-betting-app-download-install__cta-description {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.page-resources-mobile-betting-app-download-install__disclaimer {
    background-color: #050e1b;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    font-size: 0.9em;
    text-align: center;
}

.page-resources-mobile-betting-app-download-install__disclaimer strong {
    color: var(--page-iwin-secondary-color);
}

.page-resources-mobile-betting-app-download-install__disclaimer .page-resources-mobile-betting-app-download-install__link {
    color: var(--page-iwin-secondary-color);
    text-decoration: underline;
}

.page-resources-mobile-betting-app-download-install__disclaimer .page-resources-mobile-betting-app-download-install__link:hover {
    color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-mobile-betting-app-download-install__hero-title {
        font-size: 2.8em;
    }
    .page-resources-mobile-betting-app-download-install__section-title {
        font-size: 2em;
    }
    .page-resources-mobile-betting-app-download-install__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-resources-mobile-betting-app-download-install__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-mobile-betting-app-download-install__hero-title {
        font-size: 2.2em;
    }
    .page-resources-mobile-betting-app-download-install__hero-description {
        font-size: 1em;
    }
    .page-resources-mobile-betting-app-download-install__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-mobile-betting-app-download-install__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-mobile-betting-app-download-install__section-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-betting-app-download-install__feature-title {
        font-size: 1.6em;
    }
    .page-resources-mobile-betting-app-download-install__step-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-betting-app-download-install__cta-title {
        font-size: 2em;
    }
    .page-resources-mobile-betting-app-download-install__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-mobile-betting-app-download-install__hero-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-betting-app-download-install__hero-description {
        font-size: 0.9em;
    }
    .page-resources-mobile-betting-app-download-install__btn {
        width: 95%;
        padding: 12px 20px;
    }
    .page-resources-mobile-betting-app-download-install__section-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-betting-app-download-install__feature-title {
        font-size: 1.4em;
    }
    .page-resources-mobile-betting-app-download-install__step-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-betting-app-download-install__cta-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-betting-app-download-install__cta-description {
        font-size: 1em;
    }
    .page-resources-mobile-betting-app-download-install__bullet-list li,
    .page-resources-mobile-betting-app-download-install__faq-answer {
        font-size: 0.95em;
    }
    .page-resources-mobile-betting-app-download-install__faq-question {
        font-size: 1.2em;
    }
}