.page-resources-arionplay-download-guide {
    color: #333333; /* Dark text on default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-arionplay-download-guide__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-resources-arionplay-download-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-resources-arionplay-download-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px;
    border-radius: 8px;
}

.page-resources-arionplay-download-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffc107; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-arionplay-download-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources-arionplay-download-guide__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-arionplay-download-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-resources-arionplay-download-guide__button--primary {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-resources-arionplay-download-guide__button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-arionplay-download-guide__button--secondary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-resources-arionplay-download-guide__button--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-resources-arionplay-download-guide__content-area {
    max-width: 800px; /* Optimal reading width for articles */
    margin: 40px auto;
    padding: 0 20px;
}

.page-resources-arionplay-download-guide__section-title {
    font-size: 2em;
    color: #007bff; /* Primary color */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.page-resources-arionplay-download-guide__sub-section-title {
    font-size: 1.5em;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-arionplay-download-guide__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-arionplay-download-guide__strong {
    font-weight: bold;
    color: #007bff;
}

.page-resources-arionplay-download-guide__code {
    background-color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.page-resources-arionplay-download-guide__list {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-arionplay-download-guide__list-item {
    margin-bottom: 10px;
}

.page-resources-arionplay-download-guide__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
}

.page-resources-arionplay-download-guide__note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #664d03;
}

.page-resources-arionplay-download-guide__call-to-action {
    background-color: #e9f5ff; /* Light primary background */
    border: 1px solid #007bff;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}

.page-resources-arionplay-download-guide__call-to-action .page-resources-arionplay-download-guide__paragraph {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #007bff;
}

.page-resources-arionplay-download-guide__button--contact {
    background-color: #007bff;
    color: #ffffff;
}

.page-resources-arionplay-download-guide__button--contact:hover {
    background-color: #0056b3;
}

.page-resources-arionplay-download-guide__toc {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.page-resources-arionplay-download-guide__toc-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-resources-arionplay-download-guide__toc-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.page-resources-arionplay-download-guide__toc-list li {
    margin-bottom: 8px;
}

.page-resources-arionplay-download-guide__toc-link {
    color: #333333;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-arionplay-download-guide__toc-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.page-resources-arionplay-download-guide__feature-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-resources-arionplay-download-guide__feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-arionplay-download-guide__feature-title {
    color: #007bff;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-resources-arionplay-download-guide__troubleshoot-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-arionplay-download-guide__troubleshoot-item {
    background-color: #fffde7; /* Light auxiliary background */
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.page-resources-arionplay-download-guide__troubleshoot-title {
    color: #007bff;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-resources-arionplay-download-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-arionplay-download-guide__faq-question {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-arionplay-download-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #007bff;
    transition: transform 0.3s ease;
}

.page-resources-arionplay-download-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-arionplay-download-guide__faq-answer {
    font-size: 1.1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-resources-arionplay-download-guide__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}

.page-resources-arionplay-download-guide__section--final-cta {
    text-align: center;
    padding: 40px 0;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 8px;
    margin-top: 50px;
}

.page-resources-arionplay-download-guide__section--final-cta .page-resources-arionplay-download-guide__section-title {
    color: #ffc107;
    border-bottom-color: #ffffff;
}

.page-resources-arionplay-download-guide__section--final-cta .page-resources-arionplay-download-guide__paragraph {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-resources-arionplay-download-guide__final-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-arionplay-download-guide__back-to-resources {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-resources-arionplay-download-guide__back-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-arionplay-download-guide__back-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-arionplay-download-guide {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }

    .page-resources-arionplay-download-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-arionplay-download-guide__hero-description {
        font-size: 1em;
    }

    .page-resources-arionplay-download-guide__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-arionplay-download-guide__button {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-arionplay-download-guide__content-area {
        padding: 0 15px;
    }

    .page-resources-arionplay-download-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-arionplay-download-guide__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-arionplay-download-guide__paragraph, .page-resources-arionplay-download-guide__list-item {
        font-size: 1em;
    }

    .page-resources-arionplay-download-guide__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not too small */
        min-height: 200px; /* Ensure content images are not too small */
    }

    /* Ensure all images within content area are responsive and don't overflow */
    .page-resources-arionplay-download-guide img {
        max-width: 100%;
        height: auto;
    }

    .page-resources-arionplay-download-guide__feature-list {
        grid-template-columns: 1fr;
    }

    .page-resources-arionplay-download-guide__section--final-cta .page-resources-arionplay-download-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-arionplay-download-guide__section--final-cta .page-resources-arionplay-download-guide__paragraph {
        font-size: 1.1em;
    }

    .page-resources-arionplay-download-guide__final-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}