:root {
    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --accent-green: #4CAF50;
    --accent-green-light: #6BCF9B;
    --accent-yellow: #F6D94D;
    --accent-yellow-light: #FFE680;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --radius-md: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    background: var(--bg-off-white);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.changelogs-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* Premium Card Design */
.changelog-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.changelog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green-light);
}

/* Typography */
.log-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.log-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.log-meta i {
    color: var(--accent-green);
    opacity: 0.7;
}

/* Refined Badges */
.badge-pill {
    padding: 6px 14px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-target {
    background: rgba(76, 175, 80, 0.08);
    color: var(--accent-green);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.badge-type {
    background: rgba(246, 217, 77, 0.12);
    color: #947b00;
    border: 1px solid rgba(246, 217, 77, 0.2);
}

/* Points List */
.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.point-item:last-child {
    border-bottom: none;
}

.point-emoji {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.point-text {
    line-height: 1.6;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Modern Filters */
.filter-section {
    background: white;
    padding: 12px;
    border-radius: 18px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-input {
    background: var(--bg-off-white) !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition) !important;
}

.filter-input:focus {
    background: white !important;
    border-color: var(--accent-green-light) !important;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1) !important;
}

.filter-select {
    background: var(--bg-off-white) !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding: 10px 35px 10px 15px !important;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.filter-select:hover {
    background: white !important;
    border-color: var(--accent-green-light) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.changelog-card {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

/* Responsive */
@media (max-width: 768px) {
    .log-title {
        font-size: 1.35rem;
    }

    .changelog-card {
        padding: 25px;
    }

    .filter-section {
        padding: 10px;
    }
}