/* Changelog Page Styles */

.changelog-hero {
    background: var(--section-bg);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.changelog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 42, 182, 0.03) 0%, rgba(76, 42, 182, 0.08) 100%);
}

.changelog-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-primary);
}

.version-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 600;
}

.changelog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.changelog-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.feature-section {
    padding: 80px 0;
}

.feature-section:nth-child(even) {
    background: var(--section-bg);
}

.feature-header {
    margin-bottom: 48px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.feature-details {
    order: 1;
}

.feature-screenshot {
    order: 2;
    position: relative;
}

.feature-section:nth-child(even) .feature-details {
    order: 2;
}

.feature-section:nth-child(even) .feature-screenshot {
    order: 1;
}

.feature-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-list {
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

.feature-item-text {
    flex: 1;
}

.feature-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.small-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.small-feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.small-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.small-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.small-feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .changelog-hero {
        padding: 100px 0 60px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-section:nth-child(even) .feature-details {
        order: 1;
    }

    .feature-section:nth-child(even) .feature-screenshot {
        order: 2;
    }

    .feature-title {
        font-size: 2rem;
    }

    .small-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}