/* --- CHANGELOG MAIN THEME --- */
body {
    background-color: #0b0f1a; /* Dark Background */
    color: #f1f5f9;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}

#changelog-container {
    max-width: 900px;
    margin: 40px auto;
    background: #161b2e; /* Dark Blue Card */
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #a855f7;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* --- VERSION BLOCKS --- */
.version-section {
    border-left: 2px solid #a855f7;
    padding-left: 20px;
    margin-bottom: 40px;
    position: relative;
}

.version-section h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.version-section ul {
    list-style: none;
    color: #94a3b8;
}

.version-section li::before {
    content: "🚀";
    margin-right: 10px;
}

/* --- BACK BUTTON STYLE --- */
.back-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, #7b2ff7, #9f44d3);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.back-btn:hover {
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.6);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #changelog-container { padding: 15px; }
}


