/* style/download-guide.css */
.page-download-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A2E; /* Midnight Blue */
    line-height: 1.6;
}

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

.page-download-guide__hero {
    background: linear-gradient(135deg, #FFD700, #1A1A2E);
    color: #1A1A2E; /* Dark text on gradient */
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-download-guide__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-download-guide__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 0;
}

.page-download-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A1A2E;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-download-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    z-index: 1;
}

.page-download-guide__cta-button {
    display: inline-block;
    background-color: #1A1A2E; /* Midnight Blue */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    position: relative;
    z-index: 1;
}

.page-download-guide__cta-button:hover {
    background-color: #FFD700; /* Gold background */
    color: #1A1A2E; /* Midnight Blue text */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-download-guide__section {
    padding: 80px 0;
}

.page-download-guide__section:nth-of-type(even) {
    background-color: #2a2a3e;
}

.page-download-guide__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-download-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-download-guide__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #B0B0B0;
}

.page-download-guide__grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-download-guide__grid:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-download-guide__intro-content, .page-download-guide__tips-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-download-guide__intro-content p, .page-download-guide__tips-content p {
    margin-bottom: 15px;
}

.page-download-guide__intro-image, .page-download-guide__tips-image {
    flex: 1;
    text-align: center;
}

.page-download-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-download-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1em;
    margin-top: 20px;
}

.page-download-guide__button--primary {
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
}

.page-download-guide__button--primary:hover {
    background-color: transparent;
    color: #FFD700;
}

.page-download-guide__button--secondary {
    background-color: #3A3A5E;
    color: #FFD700;
    border: 2px solid #3A3A5E;
}

.page-download-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    border-color: #FFD700;
}

.page-download-guide__platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-guide__platform-card {
    background-color: #2a2a3e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-guide__platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-download-guide__platform-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-download-guide__platform-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download-guide__platform-card p {
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-download-guide__note {
    text-align: center;
    font-size: 1em;
    color: #A0A0A0;
    margin-top: 40px;
}

.page-download-guide__guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-download-guide__guide-item {
    background-color: #2a2a3e;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-download-guide__guide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-download-guide__guide-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-download-guide__guide-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-guide__guide-title a:hover {
    color: #FFF;
}

.page-download-guide__guide-description {
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-download-guide__button--view-details {
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    align-self: flex-start;
    font-size: 0.95em;
}

.page-download-guide__button--view-details:hover {
    background-color: transparent;
    color: #FFD700;
}

.page-download-guide__tips-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-download-guide__tips-content li {
    background-color: #3A3A5E;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-download-guide__tips-content li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-download-guide__cta-button--bottom {
    margin-top: 60px;
    background-color: #FFD700;
    color: #1A1A2E;
    border: 2px solid #FFD700;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-download-guide__cta-button--bottom:hover {
    background-color: transparent;
    color: #FFD700;
}

.page-download-guide__faq-items {
    margin-top: 50px;
}

.page-download-guide__faq-item {
    background-color: #2a2a3e;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

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

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

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

.page-download-guide__faq-answer {
    color: #E0E0E0;
    font-size: 1.1em;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 15px;
    display: none;
}

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

.page-download-guide__inline-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-download-guide__inline-link:hover {
    color: #FFF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-guide__hero-title {
        font-size: 2.8em;
    }
    .page-download-guide__hero-subtitle {
        font-size: 1.3em;
    }
    .page-download-guide__section-title {
        font-size: 2.2em;
    }
    .page-download-guide__grid {
        flex-direction: column;
    }
    .page-download-guide__grid:nth-of-type(even) {
        flex-direction: column;
    }
    .page-download-guide__intro-image, .page-download-guide__tips-image {
        order: -1; /* Image above text on small screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-download-guide__hero {
        padding: 80px 0;
    }
    .page-download-guide__hero-title {
        font-size: 2.2em;
    }
    .page-download-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-download-guide__section {
        padding: 60px 0;
    }
    .page-download-guide__section-title {
        font-size: 1.8em;
    }
    .page-download-guide__platform-grid, .page-download-guide__guide-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-download-guide__hero {
        padding: 60px 0;
    }
    .page-download-guide__hero-title {
        font-size: 1.8em;
    }
    .page-download-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-download-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-guide__section-title {
        font-size: 1.6em;
    }
    .page-download-guide__platform-card, .page-download-guide__guide-item, .page-download-guide__faq-item {
        padding: 20px;
    }
    .page-download-guide__platform-title {
        font-size: 1.5em;
    }
    .page-download-guide__guide-title {
        font-size: 1.3em;
    }
    .page-download-guide__faq-question {
        font-size: 1.3em;
    }
}