body {
    font-family: 'Uncial Antiqua', cursive;
    background: linear-gradient(to bottom right, #0b0b13, #1a1a2e);
    color: #e0dede;
    margin: 0;
    padding: 0;
    background-image: url('https://raw.githubusercontent.com/n3doter/LogikaHackathon25/main/images/back2.png'); 
    background-size: cover;
    background-attachment: fixed;
}

.blog-header {
    text-align: center;
    background: rgba(20, 20, 30, 0.85);
    padding: 60px 20px;
    border-bottom: 2px solid #6b4b3e;
    box-shadow: 0 0 20px #000;
}

.blog-header h1 {
    font-size: 3.2em;
    margin: 0;
    color: #f4e3c1;
    text-shadow: 0 0 8px #6c4f2e;
}

.blog-header p {
    font-size: 1.5em;
    color: #d9cbb7;
    margin-bottom: 20px;
}

.blog-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    font-size: 1.4em;
    padding: 15px 35px;
    margin: 10px;
    border-radius: 10px;
    font-weight: bold;
    background: rgba(100, 80, 50, 0.2);
    color: #f4e3c1;
    border: 2px solid #f4e3c1;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #f4e3c1;
    color: #1a1a2e;
}

.update-log {
    background: rgba(30, 30, 50, 0.7);
    border: 1px solid #6c4f2e;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px #000;
    margin-bottom: 30px;
}

.update-log h2 {
    color: #f4e3c1;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.update-log ul {
    list-style-type: none;
    padding-left: 0;
}

.update-log li {
    padding: 12px;
    border-bottom: 1px solid #3e2f26;
    margin-bottom: 12px;
    font-size: 1.3em;
    color: #ddd0c2;
    transition: background 0.3s ease;
}

.update-log li:last-child {
    border-bottom: none;
}

.update-log li:hover {
    background-color: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.update-log strong {
    color: #fceabb;
}
