/* style/download-guide.css */

/* Base styles for the download guide page */
.page-download-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Light background for readability */
}

/* Container for content */
.page-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-download-guide__hero {
    background: linear-gradient(135deg, #007bff, #ffc107); /* Main and auxiliary colors */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-guide__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-guide__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-download-guide__hero-actions {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-download-guide__btn--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #000;
    border: 2px solid #ffc107;
}

.page-download-guide__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-download-guide__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-download-guide__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-download-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
    background-color: #007bff; /* Main color for smaller actions */
    color: #fff;
    border: 1px solid #007bff;
}

.page-download-guide__btn--small:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-download-guide__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    background-color: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
}

.page-download-guide__btn--large:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-download-guide__hero-image {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.page-download-guide__hero-image .page-download-guide__img {
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* General Section Styles */
.page-download-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-guide__section:nth-of-type(even) {
    background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-download-guide__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #007bff; /* Main color for section titles */
    font-weight: bold;
}

.page-download-guide__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

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

.page-download-guide__feature-card {
    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, box-shadow 0.3s ease;
}

.page-download-guide__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-download-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

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

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

/* Step List (Download Instructions) */
.page-download-guide__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-download-guide__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.page-download-guide__step-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-download-guide__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for step numbers */
    margin-right: 25px;
    flex-shrink: 0;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-download-guide__step-content {
    flex-grow: 1;
}

.page-download-guide__step-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-download-guide__step-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-download-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Benefits List */
.page-download-guide__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-guide__benefit-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, box-shadow 0.3s ease;
}

.page-download-guide__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-download-guide__benefit-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-download-guide__benefit-item p {
    color: #666;
}

/* Game Categories */
.page-download-guide__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-guide__game-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    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-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-download-guide__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-download-guide__game-title {
    font-size: 1.3em;
    color: #007bff;
    padding: 15px 10px 5px;
    margin-bottom: 0;
}

.page-download-guide__game-text {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

.page-download-guide__cta-bottom {
    margin-top: 50px;
}

/* FAQ Section */
.page-download-guide__faq-items {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

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

.page-download-guide__faq-question {
    font-size: 1.25em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-download-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-download-guide__faq-answer {
    font-size: 1em;
    color: #555;
    margin-top: 10px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-download-guide__faq-answer.show {
    display: block;
}

/* Final CTA Section */
.page-download-guide__final-cta {
    background-color: #007bff;
    color: #fff;
    padding: 80px 0;
}

.page-download-guide__final-cta .page-download-guide__section-title {
    color: #ffc107; /* Auxiliary color for emphasis */
}

.page-download-guide__final-cta .page-download-guide__section-description {
    color: #e9ecef;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-guide__title {
        font-size: 2.2em;
    }
    .page-download-guide__section-title {
        font-size: 1.8em;
    }
    .page-download-guide__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-download-guide__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .page-download-guide__hero-image .page-download-guide__img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-download-guide__hero {
        padding: 60px 0;
    }
    .page-download-guide__title {
        font-size: 1.8em;
    }
    .page-download-guide__subtitle {
        font-size: 1em;
    }
    .page-download-guide__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-guide__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-download-guide__section {
        padding: 40px 0;
    }
    .page-download-guide__section-title {
        font-size: 1.6em;
    }
    .page-download-guide__features-grid,
    .page-download-guide__benefits-list,
    .page-download-guide__game-categories {
        grid-template-columns: 1fr;
    }
    .page-download-guide__feature-card,
    .page-download-guide__benefit-item,
    .page-download-guide__game-card {
        padding: 20px;
    }
    .page-download-guide__step-number {
        font-size: 2em;
    }
    .page-download-guide__step-title {
        font-size: 1.3em;
    }
    .page-download-guide__faq-question {
        font-size: 1.1em;
    }
    .page-download-guide__final-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-download-guide__title {
        font-size: 1.5em;
    }
    .page-download-guide__subtitle {
        font-size: 0.9em;
    }
    .page-download-guide__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-download-guide__section-title {
        font-size: 1.4em;
    }
    .page-download-guide__section-description {
        font-size: 0.9em;
    }
    .page-download-guide__hero-image .page-download-guide__img {
        max-width: 90%;
    }
}