/* style/download-center-installation-guide.css */

/* Variables for consistent styling */
:root {
    --page-8kbet-primary-color: #0A2463;
    --page-8kbet-secondary-color: #FFD700;
    --page-8kbet-text-dark: #222222;
    --page-8kbet-text-light: #ffffff;
    --page-8kbet-background-light: #f8f8f8;
    --page-8kbet-button-hover-dark: #071a47;
    --page-8kbet-button-hover-light: #e6c200;
}

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

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

.page-download-center-installation-guide__hero-section {
    background: linear-gradient(135deg, var(--page-8kbet-primary-color), #3f5d9f);
    color: var(--page-8kbet-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-installation-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue,gold,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-download-center-installation-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-8kbet-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-download-center-installation-guide__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-download-center-installation-guide__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-download-center-installation-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-installation-guide__button--primary {
    background-color: var(--page-8kbet-secondary-color);
    color: var(--page-8kbet-primary-color);
}

.page-download-center-installation-guide__button--primary:hover {
    background-color: var(--page-8kbet-button-hover-light);
    transform: translateY(-3px);
}

.page-download-center-installation-guide__button--secondary {
    background-color: transparent;
    color: var(--page-8kbet-secondary-color);
    border: 2px solid var(--page-8kbet-secondary-color);
}

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

.page-download-center-installation-guide__content-section {
    padding: 60px 0;
    background-color: var(--page-8kbet-background-light);
}

.page-download-center-installation-guide__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-download-center-installation-guide__section-title {
    font-size: 2.5em;
    color: var(--page-8kbet-primary-color);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--page-8kbet-secondary-color);
    padding-bottom: 15px;
    text-align: center;
}

.page-download-center-installation-guide__subsection-title {
    font-size: 1.8em;
    color: var(--page-8kbet-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-download-center-installation-guide__list,
.page-download-center-installation-guide__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding: 0;
}

.page-download-center-installation-guide__numbered-list {
    list-style-type: decimal;
}

.page-download-center-installation-guide__list li,
.page-download-center-installation-guide__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--page-8kbet-text-dark);
}

.page-download-center-installation-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-installation-guide__link {
    color: var(--page-8kbet-primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-download-center-installation-guide__link:hover {
    color: var(--page-8kbet-secondary-color);
}

.page-download-center-installation-guide__faq {
    margin-top: 40px;
}

.page-download-center-installation-guide__faq-item {
    background-color: var(--page-8kbet-background-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.page-download-center-installation-guide__faq-question {
    font-size: 1.4em;
    color: var(--page-8kbet-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-download-center-installation-guide__faq-answer {
    font-size: 1.1em;
    color: var(--page-8kbet-text-dark);
}

.page-download-center-installation-guide__final-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-download-center-installation-guide__hero-title {
        font-size: 2.5em;
    }

    .page-download-center-installation-guide__hero-description {
        font-size: 1.1em;
    }

    .page-download-center-installation-guide__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-download-center-installation-guide__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-download-center-installation-guide__section-title {
        font-size: 2em;
    }

    .page-download-center-installation-guide__subsection-title {
        font-size: 1.5em;
    }

    .page-download-center-installation-guide__article {
        padding: 20px;
    }

    .page-download-center-installation-guide__list li,
    .page-download-center-installation-guide__numbered-list li,
    .page-download-center-installation-guide__faq-question,
    .page-download-center-installation-guide__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-download-center-installation-guide__hero-title {
        font-size: 2em;
    }

    .page-download-center-installation-guide__hero-description {
        font-size: 1em;
    }

    .page-download-center-installation-guide__section-title {
        font-size: 1.8em;
    }

    .page-download-center-installation-guide__subsection-title {
        font-size: 1.3em;
    }
}