/* Changelog Updates Page Styles - Premium Glassmorphism (Matching FAQ/Pricing Style) */

.changelog-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.changelog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.changelog-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.changelog-container {
    max-width: 960px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

/* Timeline Layout */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -39px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.timeline-item.latest .timeline-dot {
    background-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

/* Premium Dark Glassmorphism Cards */
.changelog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(40px);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.changelog-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.changelog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.version-badge.latest {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.release-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Parsed Content Styling - Dark Mode Clean Contrast */
.changelog-body .changelog-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 16px;
}

.changelog-body .changelog-h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.changelog-body .changelog-h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 16px;
    margin-bottom: 8px;
}

.changelog-body .changelog-p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.changelog-body .changelog-list {
    margin-top: 8px;
    margin-bottom: 16px;
    padding-left: 24px;
}

.changelog-body .changelog-list li {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 6px;
}

.changelog-body code {
    background-color: rgba(255, 255, 255, 0.08);
    color: #93c5fd;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: monospace;
}

.changelog-body .changelog-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 16px 0;
}

.changelog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.changelog-table th,
.changelog-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.changelog-table th {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
}

.changelog-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}
