* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff;
    border-bottom: 3px solid #d9534f;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: #d9534f;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: #333;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.article-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Article Content */
.article-content {
    margin-bottom: 40px;
}

.article-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
    font-weight: 400;
}

.highlight {
    background-color: #fff3cd;
    padding: 20px 25px;
    border-left: 5px solid #d9534f;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #d9534f;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #d9534f;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 20px 0;
}

.cta-button:hover {
    background-color: #c9423f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 83, 79, 0.4);
}

/* Likes Section */
.likes-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 40px;
    border-left: 4px solid #d9534f;
}

.like-button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.like-button:hover {
    background-color: #c9423f;
    transform: scale(1.05);
}

.like-button.liked {
    background-color: #e74c3c;
}

.likes-count {
    font-size: 20px;
    font-weight: 700;
    color: #d9534f;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #e0e0e0;
}

.comments-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.comment {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #d9534f;
    transition: all 0.3s ease;
}

.comment:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.comment-text {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.comment-time {
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 3px solid #d9534f;
}

footer p {
    margin-bottom: 10px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 36px;
    }

    .article-image {
        height: 300px;
    }

    .article-content p {
        font-size: 16px;
    }

    .logo {
        font-size: 32px;
    }
}