/* changelog.css */

.changelog-page {
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.changelog-wrapper {
    padding: 100px 0;
    min-height: 80vh;
    background: radial-gradient(circle at top right, rgba(69, 162, 158, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(102, 252, 241, 0.05), transparent 40%);
}

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

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #66fcf1, #45a29e);
    color: #0b0c10;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.changelog-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.changelog-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #a0a0a0;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    background: #66fcf1;
    color: #0b0c10;
}

/* Cards */
.changelog-card {
    background: rgba(31, 40, 51, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(102, 252, 241, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.changelog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 252, 241, 0.3);
}

.card-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}

.error-glow { text-shadow: 0 0 20px rgba(230, 57, 70, 0.5); }
.warning-glow { text-shadow: 0 0 20px rgba(255, 183, 3, 0.5); }
.success-glow { text-shadow: 0 0 20px rgba(102, 252, 241, 0.5); }

.card-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Lists */
.fancy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fancy-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    color: #c5c6c7;
}

.fancy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #66fcf1;
    font-weight: bold;
}

.fancy-list li strong {
    color: #fff;
    font-weight: 600;
}

/* Utils */
.highlight-num {
    color: #66fcf1;
    font-family: monospace;
    font-size: 1.1em;
    background: rgba(102, 252, 241, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

code {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: #e63946;
    font-family: monospace;
}

.badge-red {
    background: #e63946;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.alert-box {
    background: rgba(255, 183, 3, 0.1);
    border-left: 4px solid #ffb703;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.alert-warning strong {
    color: #ffb703;
}

/* Footer CTAs */
.changelog-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .changelog-header h1 { font-size: 2.5rem; }
    .changelog-card { flex-direction: column; gap: 20px; padding: 25px; }
    .card-icon { width: 60px; height: 60px; font-size: 2rem; }
    .changelog-footer { flex-direction: column; }
}
