

.page-header {
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 48rem;
    margin: 0 auto;
}


.latest-update-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(34, 211, 238, 0.1));
}

.banner-content {
  
    gap: 3rem;
    align-items: center;
}

.banner-badge {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-new {
    background-color: var(--color-success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-version {
    background-color: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.banner-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--color-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.banner-image {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.updates-timeline {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 5rem;
}

.timeline-item.featured {
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.8), rgba(219, 234, 254, 0.8));
    border-radius: var(--border-radius);
    padding: 2rem 2rem 2rem 5rem;
    margin-left: -2rem;
    margin-right: -2rem;
    box-shadow: var(--box-shadow);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px var(--color-primary-light);
}

.timeline-item.featured .timeline-icon {
    background-color: var(--color-success);
    box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(16, 185, 129, 0.3);
}

.timeline-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.timeline-item.featured .timeline-content {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.update-version {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.version-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.version-badge.new {
    background-color: var(--color-success);
    color: white;
}

.update-date {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.update-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.update-description p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.update-features h4 {
    color: var(--color-primary-dark);
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.update-features h4:first-child {
    margin-top: 0;
}

.update-features ul {
    list-style: none;
    padding: 0;
}

.update-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.update-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.update-features strong {
    color: var(--color-text);
}


.upcoming-updates {
    padding: 4rem 0;
    background: linear-gradient(to right, rgba(236, 254, 255, 0.3), rgba(219, 234, 254, 0.3));
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upcoming-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-speed);
}

.upcoming-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.upcoming-header {
    margin-bottom: 1.5rem;
}

.upcoming-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.upcoming-date {
    color: var(--color-text-light);
    font-size: 0.875rem;
    background-color: rgba(8, 145, 178, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
}

.upcoming-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.upcoming-features {
    list-style: none;
    padding: 0;
}

.upcoming-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.upcoming-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}



@media (max-width: 992px) {
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-image {
        order: -1;
        height: 250px;
    }
    
    .timeline::before {
        left: 1rem;
    }
    
    .timeline-item {
        padding-left: 3.5rem;
    }
    
    .timeline-item.featured {
        padding: 2rem 1rem 2rem 3.5rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .timeline-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .timeline-icon .icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1.125rem;
    }
    
    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1.125rem;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .upcoming-card {
        padding: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
}