/* style/download-center-update-log.css */
.page-download-center-update-log {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-download-center-update-log__hero {
    background: linear-gradient(135deg, #0A2463, #FFD700);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-download-center-update-log__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-download-center-update-log__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.page-download-center-update-log__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-download-center-update-log__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-download-center-update-log__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A2463; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-download-center-update-log__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-download-center-update-log__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFD700; /* Accent color on hover */
    color: #FFD700;
    transform: translateY(-2px);
}

.page-download-center-update-log__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Primary color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

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

.page-download-center-update-log__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 60px;
}

.page-download-center-update-log__why-update,
.page-download-center-update-log__update-log,
.page-download-center-update-log__how-to-download,
.page-download-center-update-log__faq,
.page-download-center-update-log__cta-final {
    padding: 60px 0;
}

.page-download-center-update-log__why-update {
    background-color: #fff;
}

.page-download-center-update-log__why-update-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-download-center-update-log__why-update-text {
    flex: 2;
}

.page-download-center-update-log__why-update-text p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-download-center-update-log__why-update-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-download-center-update-log__why-update-text li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #444;
}

.page-download-center-update-log__why-update-text li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700; /* Accent color */
}

.page-download-center-update-log__why-update-image {
    flex: 1;
    text-align: center;
}

.page-download-center-update-log__why-update-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-download-center-update-log__log-entry {
    background-color: #fff;
    border-left: 5px solid #0A2463; /* Primary color */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-update-log__log-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-update-log__log-version {
    font-size: 1.8em;
    color: #0A2463; /* Primary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-download-center-update-log__log-features {
    list-style: none;
    padding: 0;
}

.page-download-center-update-log__log-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-download-center-update-log__log-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700; /* Accent color */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-download-center-update-log__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-download-center-update-log__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #333;
}

.page-download-center-update-log__download-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.page-download-center-update-log__guide-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-download-center-update-log__guide-item img {
    max-width: 80%;
    height: auto;
    margin: 20px auto 30px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-update-log__guide-title {
    font-size: 2em;
    color: #0A2463; /* Primary color */
    margin-bottom: 25px;
    font-weight: 600;
}

.page-download-center-update-log__guide-item ol {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 25px;
}

.page-download-center-update-log__guide-item ol li {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #555;
}

.page-download-center-update-log__guide-item ol li strong {
    color: #0A2463;
}

.page-download-center-update-log__guide-item ol li a {
    color: #0A2463;
    text-decoration: underline;
}

.page-download-center-update-log__guide-item ol li a:hover {
    color: #FFD700;
}

.page-download-center-update-log__faq {
    background-color: #f0f2f5;
}

.page-download-center-update-log__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-download-center-update-log__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #FFD700; /* Accent color */
}

.page-download-center-update-log__faq-question {
    font-size: 1.3em;
    color: #0A2463; /* Primary color */
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-update-log__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-download-center-update-log__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-download-center-update-log__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
    margin-top: 15px;
}

.page-download-center-update-log__cta-final {
    background-color: #0A2463; /* Primary color */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__section-title {
    color: #fff;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__section-title::after {
    background-color: #FFD700;
}

.page-download-center-update-log__cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-download-center-update-log__cta-final .page-download-center-update-log__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-update-log__why-update-content {
        flex-direction: column;
        text-align: center;
    }

    .page-download-center-update-log__why-update-image {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-download-center-update-log__hero-title {
        font-size: 2.5em;
    }

    .page-download-center-update-log__hero-subtitle {
        font-size: 1.1em;
    }

    .page-download-center-update-log__section-title {
        font-size: 2em;
    }

    .page-download-center-update-log__log-version {
        font-size: 1.5em;
    }

    .page-download-center-update-log__guide-title {
        font-size: 1.7em;
    }

    .page-download-center-update-log__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-download-center-update-log__hero {
        padding: 60px 0;
    }

    .page-download-center-update-log__hero-title {
        font-size: 2em;
    }

    .page-download-center-update-log__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-update-log__section-title {
        font-size: 1.8em;
    }

    .page-download-center-update-log__section-description {
        font-size: 1em;
    }

    .page-download-center-update-log__why-update,
    .page-download-center-update-log__update-log,
    .page-download-center-update-log__how-to-download,
    .page-download-center-update-log__faq,
    .page-download-center-update-log__cta-final {
        padding: 40px 0;
    }

    .page-download-center-update-log__download-guide {
        grid-template-columns: 1fr;
    }

    .page-download-center-update-log__faq-question {
        font-size: 1.1em;
    }

    .page-download-center-update-log__faq-answer {
        font-size: 0.95em;
    }

    .page-download-center-update-log__guide-item ol {
        padding-left: 15px;
    }

    .page-download-center-update-log__guide-item img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-download-center-update-log__container {
        padding: 0 15px;
    }

    .page-download-center-update-log__hero-title {
        font-size: 1.8em;
    }

    .page-download-center-update-log__hero-subtitle {
        font-size: 0.95em;
    }

    .page-download-center-update-log__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-download-center-update-log__section-title {
        font-size: 1.5em;
    }

    .page-download-center-update-log__log-version {
        font-size: 1.3em;
    }

    .page-download-center-update-log__guide-title {
        font-size: 1.5em;
    }
}