/* Changelog page styles */

.changelog-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.changelog-header {
    margin-bottom: 40px;
    text-align: center;
}

.changelog-tag {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.changelog-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-bright);
    letter-spacing: 1px;
}

/* Empty state */
.changelog-empty {
    text-align: center;
    padding: 80px 20px;
    border: 1px solid var(--border-dim);
    position: relative;
}

.changelog-empty-tag {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.changelog-empty-text {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* L-bracket corners on empty state */
.changelog-empty::before,
.changelog-empty::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--accent-color);
    border-style: solid;
    border-width: 0;
    pointer-events: none;
}

.changelog-empty::before {
    top: 6px;
    left: 6px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.changelog-empty::after {
    bottom: 6px;
    right: 6px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

@media (max-width: 768px) {
    .changelog-page {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .changelog-title {
        font-size: 1.4rem;
    }

    .changelog-empty {
        padding: 60px 16px;
    }
}
