:root {
    --log-bg: #fdfdfd;
    --log-text: #333;
    --log-primary: #e84393; /* Rose pink */
    --log-secondary: #fdcb6e;
    --log-border: #dfe6e9;
    --log-line: #b2bec3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--log-bg); color: var(--log-text);
    font-family: 'SF Mono', Consolas, 'Liberation Mono', Menlo, monospace;
    line-height: 1.6;
}

.log-container { max-width: 900px; margin: 0 auto; padding: 0 30px; }

/* Header */
.log-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 0; border-bottom: 2px dashed var(--log-border);
    margin-bottom: 50px;
}
.log-brand {
    font-size: 22px; font-weight: bold; color: var(--log-primary);
    text-transform: uppercase; letter-spacing: 1px;
}
.log-brand::before { content: '>_ '; color: var(--log-line); }
.log-nav { display: flex; gap: 20px; }
.log-nav a {
    color: #666; text-decoration: none; font-size: 14px;
    padding: 5px 10px; border: 1px solid transparent; transition: all 0.2s;
}
.log-nav a:hover, .log-nav a.active {
    border-color: var(--log-primary); color: var(--log-primary);
    background: rgba(232, 67, 147, 0.05);
}

/* Hero */
.log-hero {
    margin-bottom: 60px; padding: 40px; background: #fff;
    border: 1px solid var(--log-border); box-shadow: 5px 5px 0px rgba(0,0,0,0.05);
}
.log-hero h1 { font-size: 32px; margin-bottom: 15px; color: #2d3436;}
.log-hero p { font-size: 16px; color: #636e72; margin-bottom: 30px;}

.btn-log {
    display: inline-block; padding: 12px 25px; font-size: 14px; font-weight: bold;
    color: #fff; background: var(--log-primary); text-decoration: none;
    text-transform: uppercase; transition: transform 0.1s;
}
.btn-log:active { transform: translateY(2px); }

/* Timeline */
.log-timeline { position: relative; margin-bottom: 80px; padding-left: 30px;}
.log-timeline::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0;
    width: 2px; background: var(--log-line);
}
.l-entry { position: relative; margin-bottom: 50px; }
.l-entry::before {
    content: ''; position: absolute; left: -35px; top: 5px;
    width: 12px; height: 12px; border-radius: 50%; background: var(--log-primary);
    border: 3px solid var(--log-bg);
}
.l-meta { display: flex; gap: 15px; align-items: baseline; margin-bottom: 15px;}
.l-version { font-size: 24px; font-weight: bold; color: #2d3436;}
.l-date { font-size: 14px; color: #b2bec3;}
.l-content {
    background: #fff; border: 1px solid var(--log-border); padding: 25px;
    border-radius: 4px;
}
.l-content ul { list-style-type: none; }
.l-content li {
    margin-bottom: 10px; padding-left: 20px; position: relative; color: #555;
}
.l-content li::before {
    content: '-'; position: absolute; left: 0; color: var(--log-primary);
}
.badge {
    display: inline-block; padding: 2px 8px; font-size: 12px; border-radius: 3px;
    margin-right: 10px; font-weight: bold;
}
.b-new { background: rgba(0, 184, 148, 0.1); color: #00b894; }
.b-fix { background: rgba(214, 48, 49, 0.1); color: #d63031; }
.b-opt { background: rgba(9, 132, 227, 0.1); color: #0984e3; }

/* FAQ */
.log-faq { margin-bottom: 80px; }
.log-faq h2 { font-size: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--log-border); padding-bottom: 10px;}
.l-faq-item { margin-bottom: 25px; }
.l-fq { font-weight: bold; color: var(--log-primary); margin-bottom: 5px;}
.l-fa { color: #636e72; padding-left: 15px; border-left: 2px solid var(--log-border);}

footer {
    text-align: center; padding: 30px 0; color: #b2bec3; font-size: 12px;
    border-top: 1px dashed var(--log-border);
}

@media (max-width: 600px) {
    .log-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}