/* Background and font */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,800&display=swap');
body {
    font-family: 'Montserrat', 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: url('forest-dark.jpg') center center/cover no-repeat fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #f3f3f3;
}

/* Overlay for readability */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(24, 24, 32, 0.82);
    z-index: 0;
    pointer-events: none;
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 32px;
    background: rgba(44, 44, 64, 0.85);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

/* Blog Title */
h1 {
    text-align: center;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #fff;
    margin-bottom: 40px;
    font-size: 2.7rem;
    text-shadow: 0 2px 16px #0008;
}

/* Blog Post Card */
.post {
    background: rgba(34, 34, 54, 0.92);
    border-radius: 7px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    border: 1.5px solid #3a3a5a;
    padding: 28px 30px 18px 30px;
    margin-bottom: 32px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.post:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    border-color: #6c63ff;
}

/* Post Title */
.post h2 {
    margin-top: 0;
    color: #e0dfff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #0006;
}

/* Post Meta */
.post-meta {
    font-size: 1rem;
    color: #b0b0d0;
    margin-bottom: 14px;
    font-style: italic;
}

/* Post Content */
.post-content {
    font-size: 1.13rem;
    color: #f3f3fa;
    margin-bottom: 22px;
    line-height: 1.7;
}

/* Comments Section */
.comments {
    margin-top: 12px;
    margin-bottom: 12px;
}

.comment {
    margin-top: 10px;
    padding: 13px 16px;
    background: rgba(60, 60, 90, 0.85);
    border-radius: 4px;
    color: #e0e0f0;
    font-size: 1rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
    border-left: 3px solid #6c63ff;
}

/* Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.comment-form textarea {
    min-height: 54px;
    padding: 12px;
    border: 1.5px solid #444466;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
    background: rgba(30, 30, 50, 0.92);
    color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.comment-form textarea:focus {
    border-color: #6c63ff;
    outline: none;
    box-shadow: 0 0 0 2px #6c63ff44;
}

.comment-form button {
    align-self: flex-end;
    padding: 10px 22px;
    background: linear-gradient(90deg, #6c63ff 0%, #4834d4 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(60, 60, 120, 0.13);
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
}

.comment-form button:hover {
    background: linear-gradient(90deg, #4834d4 0%, #6c63ff 100%);
    transform: translateY(-2px) scale(1.04);
}