/* style/download-app-version-history.css */
.page-download-app-version-history {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-download-app-version-history__hero-section {
    background: linear-gradient(135deg, #0A246A, #1A3E8A);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-app-version-history__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,gaming_elements,blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-download-app-version-history__hero-section > .page-download-app-version-history__container {
    position: relative;
    z-index: 1;
}

.page-download-app-version-history__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-app-version-history__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-download-app-version-history__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-app-version-history__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Content Section */
.page-download-app-version-history__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-download-app-version-history__section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-download-app-version-history__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-download-app-version-history__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.page-download-app-version-history__highlight-text {
    color: #0A246A;
    font-weight: bold;
}

/* Feature Grid */
.page-download-app-version-history__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.page-download-app-version-history__feature-item {
    background-color: #f2f6fc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-app-version-history__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-download-app-version-history__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-download-app-version-history__feature-title {
    font-size: 1.5em;
    color: #0A246A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-app-version-history__feature-description {
    color: #666;
    font-size: 0.95em;
}

/* Version Timeline */
.page-download-app-version-history__version-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.page-download-app-version-history__version-card {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-download-app-version-history__version-card:nth-child(even) {
    background-color: #fdfdfd;
}

.page-download-app-version-history__version-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.page-download-app-version-history__version-title {
    font-size: 2em;
    color: #0A246A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-app-version-history__version-date {
    font-size: 0.95em;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.page-download-app-version-history__version-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-download-app-version-history__version-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.page-download-app-version-history__version-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-download-app-version-history__feature-strong {
    color: #0A246A;
}

.page-download-app-version-history__version-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    align-self: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Commitment List */
.page-download-app-version-history__commitment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-download-app-version-history__commitment-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #444;
}

.page-download-app-version-history__commitment-list li::before {
    content: '★';
    color: #FFD700;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-download-app-version-history__commitment-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    margin: 30px auto 50px auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.page-download-app-version-history__cta-buttons {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.page-download-app-version-history__btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    text-align: center;
}

.page-download-app-version-history__btn--primary {
    background-color: #FFD700;
    color: #0A246A;
    border: 2px solid #FFD700;
}

.page-download-app-version-history__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-5px);
}

.page-download-app-version-history__btn--secondary {
    background-color: #0A246A;
    color: #FFD700;
    border: 2px solid #0A246A;
}

.page-download-app-version-history__btn--secondary:hover {
    background-color: #1a3e8a;
    border-color: #1a3e8a;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-app-version-history__hero-title {
        font-size: 2.8em;
    }
    .page-download-app-version-history__section-title {
        font-size: 2em;
    }
    .page-download-app-version-history__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-download-app-version-history__version-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-download-app-version-history__hero-section {
        padding: 80px 0;
    }
    .page-download-app-version-history__hero-title {
        font-size: 2.2em;
    }
    .page-download-app-version-history__hero-subtitle {
        font-size: 1.1em;
    }
    .page-download-app-version-history__section-title {
        font-size: 1.8em;
    }
    .page-download-app-version-history__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-download-app-version-history__version-title {
        font-size: 1.6em;
    }
    .page-download-app-version-history__btn {
        width: 100%;
        max-width: 300px;
        font-size: 1.1em;
        padding: 15px 25px;
    }
    .page-download-app-version-history__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-download-app-version-history__hero-title {
        font-size: 1.8em;
    }
    .page-download-app-version-history__hero-subtitle {
        font-size: 1em;
    }
    .page-download-app-version-history__section-title {
        font-size: 1.6em;
    }
    .page-download-app-version-history__feature-item {
        padding: 20px;
    }
    .page-download-app-version-history__version-card {
        padding: 20px;
    }
    .page-download-app-version-history__version-title {
        font-size: 1.4em;
    }
    .page-download-app-version-history__version-features li {
        font-size: 0.9em;
    }
}