* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3rem;
}

main {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
}

.blog-post {
    background: white;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-content h2 {
    margin-bottom: 10px;
}

.meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.like-btn {
    margin-top: 15px;
    padding: 10px 18px;
    border: none;
    background: #ff4b5c;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.like-btn:hover {
    background: #e63946;
}

.comments {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

button[type="submit"] {
    padding: 10px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.comment {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    background: #222;
    color: white;
}
