/* ==================================================
   BLOG DETAIL PAGE — blog-detail.css
   ================================================== */

.blog-detail {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.blog-detail img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.5em;
}

.blog-detail .date {
    color: #888;
    margin-bottom: 30px;
    display: block;
}

.blog-detail p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(255, 0, 0, 1);
    transform: translateY(-2px);
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    padding: 100px 20px;
}

.error-message h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.error-message p {
    font-size: 1.2em;
    margin-bottom: 30px;
}