/* style/download-center-app-features.css */

/* Variables for color scheme */
:root {
    --page-download-center-app-features-primary-color: #1A237E;
    --page-download-center-app-features-accent-color: #FFD700;
    --page-download-center-app-features-text-color-dark: #333333;
    --page-download-center-app-features-text-color-light: #FFFFFF;
    --page-download-center-app-features-background-light: #F8F9FA;
    --page-download-center-app-features-background-dark: #12185C; /* Slightly lighter than primary for contrast */
    --page-download-center-app-features-border-color: #E0E0E0;
}

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

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

/* Hero Section */
.page-download-center-app-features__hero-section {
    background: linear-gradient(135deg, var(--page-download-center-app-features-primary-color) 0%, var(--page-download-center-app-features-background-dark) 100%);
    color: var(--page-download-center-app-features-text-color-light);
    padding: 100px 0;
    text-align: center;
}

.page-download-center-app-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-download-center-app-features-accent-color);
    line-height: 1.2;
}

.page-download-center-app-features__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-download-center-app-features__hero-actions .page-download-center-app-features__button {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-download-center-app-features__button--primary {
    background-color: var(--page-download-center-app-features-accent-color);
    color: var(--page-download-center-app-features-primary-color);
    border: 2px solid var(--page-download-center-app-features-accent-color);
}

.page-download-center-app-features__button--primary:hover {
    background-color: #e6c200; /* Darken accent color */
    transform: translateY(-3px);
}

.page-download-center-app-features__button--secondary {
    background-color: transparent;
    color: var(--page-download-center-app-features-accent-color);
    border: 2px solid var(--page-download-center-app-features-accent-color);
}

.page-download-center-app-features__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* General Section Styling */
.page-download-center-app-features__section {
    padding: 80px 0;
    text-align: center;
}

.page-download-center-app-features__section:nth-of-type(even) {
    background-color: var(--page-download-center-app-features-background-light);
}

.page-download-center-app-features__section:nth-of-type(odd) {
    background-color: #f0f2f5; /* A very light grey for subtle contrast */
}

.page-download-center-app-features__section-title {
    font-size: 2.8em;
    color: var(--page-download-center-app-features-primary-color);
    margin-bottom: 20px;
}

.page-download-center-app-features__section-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--page-download-center-app-features-text-color-dark);
}

/* Why Choose Section */
.page-download-center-app-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center-app-features__feature-item {
    background-color: var(--page-download-center-app-features-text-color-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.page-download-center-app-features__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-app-features__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-download-center-app-features__feature-title {
    font-size: 1.6em;
    color: var(--page-download-center-app-features-primary-color);
    margin-bottom: 15px;
}

.page-download-center-app-features__feature-text {
    font-size: 1em;
    color: var(--page-download-center-app-features-text-color-dark);
}

/* Core Features Section */
.page-download-center-app-features__feature-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    text-align: left;
}

.page-download-center-app-features__feature-block:last-of-type {
    margin-bottom: 0;
}

.page-download-center-app-features__feature-block--reversed {
    flex-direction: row-reverse;
}

.page-download-center-app-features__feature-image {
    flex: 1;
    max-width: 50%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.page-download-center-app-features__feature-content {
    flex: 1;
    max-width: 50%;
}

.page-download-center-app-features__feature-subtitle {
    font-size: 2em;
    color: var(--page-download-center-app-features-primary-color);
    margin-bottom: 20px;
}

.page-download-center-app-features__feature-content .page-download-center-app-features__feature-text {
    margin-bottom: 25px;
}

.page-download-center-app-features__feature-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-download-center-app-features__feature-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--page-download-center-app-features-text-color-dark);
    font-size: 1.1em;
}

.page-download-center-app-features__feature-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-download-center-app-features-accent-color);
    font-size: 1.2em;
    line-height: 1;
}

/* Download Guide Section */
.page-download-center-app-features__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-center-app-features__step-item {
    background-color: var(--page-download-center-app-features-text-color-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-download-center-app-features__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-download-center-app-features__step-title {
    font-size: 1.8em;
    color: var(--page-download-center-app-features-primary-color);
    margin-bottom: 15px;
}

.page-download-center-app-features__step-text {
    font-size: 1em;
    color: var(--page-download-center-app-features-text-color-dark);
}

.page-download-center-app-features__download-buttons {
    margin-top: 50px;
}

.page-download-center-app-features__download-buttons .page-download-center-app-features__button {
    margin: 10px;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 50px;
}

/* Responsible Gambling Section */
.page-download-center-app-features__section--responsible-gambling {
    background-color: var(--page-download-center-app-features-background-dark);
    color: var(--page-download-center-app-features-text-color-light);
}

.page-download-center-app-features__section--responsible-gambling .page-download-center-app-features__section-title {
    color: var(--page-download-center-app-features-accent-color);
}

.page-download-center-app-features__section--responsible-gambling .page-download-center-app-features__section-description {
    color: rgba(255, 255, 255, 0.9);
}

.page-download-center-app-features__section--responsible-gambling .page-download-center-app-features__button--secondary {
    color: var(--page-download-center-app-features-accent-color);
    border-color: var(--page-download-center-app-features-accent-color);
}

.page-download-center-app-features__section--responsible-gambling .page-download-center-app-features__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.15);
}

/* FAQ Section */
.page-download-center-app-features__faq-item {
    background-color: var(--page-download-center-app-features-text-color-light);
    border: 1px solid var(--page-download-center-app-features-border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-download-center-app-features__faq-question {
    font-size: 1.4em;
    color: var(--page-download-center-app-features-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-download-center-app-features__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--page-download-center-app-features-accent-color);
    transition: transform 0.3s ease;
}

.page-download-center-app-features__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-download-center-app-features__faq-answer {
    font-size: 1.1em;
    color: var(--page-download-center-app-features-text-color-dark);
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--page-download-center-app-features-border-color);
}

.page-download-center-app-features__faq-answer.active {
    display: block;
}

/* CTA Section */
.page-download-center-app-features__cta-section {
    background: linear-gradient(135deg, var(--page-download-center-app-features-accent-color) 0%, #e6c200 100%);
    color: var(--page-download-center-app-features-primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-download-center-app-features__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-download-center-app-features-primary-color);
}

.page-download-center-app-features__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(26, 35, 126, 0.9);
}

.page-download-center-app-features__cta-section .page-download-center-app-features__button {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 50px;
    background-color: var(--page-download-center-app-features-primary-color);
    color: var(--page-download-center-app-features-accent-color);
    border: 2px solid var(--page-download-center-app-features-primary-color);
}

.page-download-center-app-features__cta-section .page-download-center-app-features__button:hover {
    background-color: var(--page-download-center-app-features-background-dark);
    border-color: var(--page-download-center-app-features-background-dark);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-app-features__hero-title {
        font-size: 2.8em;
    }

    .page-download-center-app-features__hero-subtitle {
        font-size: 1.2em;
    }

    .page-download-center-app-features__section-title {
        font-size: 2.2em;
    }

    .page-download-center-app-features__feature-block {
        flex-direction: column;
        gap: 30px;
    }

    .page-download-center-app-features__feature-block--reversed {
        flex-direction: column;
    }

    .page-download-center-app-features__feature-image,
    .page-download-center-app-features__feature-content {
        max-width: 100%;
    }

    .page-download-center-app-features__feature-image {
        order: -1; /* Image always on top for mobile in reversed blocks */
    }

    .page-download-center-app-features__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-download-center-app-features__hero-section,
    .page-download-center-app-features__section,
    .page-download-center-app-features__cta-section {
        padding: 60px 0;
    }

    .page-download-center-app-features__hero-title {
        font-size: 2.2em;
    }

    .page-download-center-app-features__hero-subtitle {
        font-size: 1em;
    }

    .page-download-center-app-features__hero-actions .page-download-center-app-features__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-app-features__section-title {
        font-size: 1.8em;
    }

    .page-download-center-app-features__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-download-center-app-features__feature-item {
        padding: 25px;
    }

    .page-download-center-app-features__feature-title {
        font-size: 1.4em;
    }

    .page-download-center-app-features__feature-subtitle {
        font-size: 1.6em;
    }

    .page-download-center-app-features__step-title {
        font-size: 1.5em;
    }

    .page-download-center-app-features__download-buttons .page-download-center-app-features__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-download-center-app-features__cta-title {
        font-size: 2em;
    }

    .page-download-center-app-features__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-download-center-app-features__hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-download-center-app-features__hero-actions .page-download-center-app-features__button {
        width: 100%;
        max-width: 250px;
    }
    .page-download-center-app-features__download-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-download-center-app-features__download-buttons .page-download-center-app-features__button {
        width: 100%;
        max-width: 250px;
    }
}