/* Custom CSS - Thêm các style tùy chỉnh tại đây */

/* ========================================
   SVG Icons Styles
   ======================================== */

/* Header Date Icon */
.header-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-date svg {
    flex-shrink: 0;
}

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.header-social svg {
    transition: transform 0.3s ease;
}

.header-social a:hover svg {
    transform: scale(1.1);
}

/* Logo Icon */
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c00 0%, #ff4444 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.site-title a:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5);
}

.logo-icon svg {
    stroke: #fff;
}

/* Search Button */
.header-search button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search button svg {
    transition: transform 0.3s ease;
}

.header-search button:hover svg {
    transform: scale(1.15);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.menu-toggle svg {
    transition: transform 0.3s ease;
}

.menu-toggle:hover svg {
    transform: scale(1.1);
}

/* Breaking News Label */
.breaking-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breaking-label svg {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   Section Title
   ======================================== */

/* Section Title */
.section-title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #c00;
    text-transform: uppercase;
}

/* Archive Header */
.archive-header {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.archive-title {
    font-size: 24px;
    margin: 0;
}

.archive-description {
    color: #666;
    margin-top: 10px;
}

/* Search Header */
.search-header {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.search-title {
    font-size: 24px;
    margin: 0 0 10px;
}

.search-title span {
    color: #c00;
}

.search-count {
    color: #666;
    margin: 0;
}

/* Error 404 */
.error-404 {
    text-align: center;
    background: #fff;
    padding: 60px 30px;
    border-radius: 4px;
}

.error-title {
    font-size: 120px;
    color: #c00;
    margin: 0;
    line-height: 1;
}

.error-404 h2 {
    font-size: 28px;
    margin: 20px 0;
}

.error-404 p {
    color: #666;
    margin-bottom: 20px;
}

.error-search {
    max-width: 400px;
    margin: 30px auto;
}

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    background: #c00;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}

.btn-home:hover {
    background: #a00;
    color: #fff;
    text-decoration: none;
}

.error-suggestions {
    margin-top: 40px;
    text-align: left;
}

.error-suggestions h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Entry Categories */
.entry-categories {
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    background: #c00;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 5px;
}

.category-badge:hover {
    background: #a00;
    color: #fff;
    text-decoration: none;
}

/* Entry Footer */
.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.entry-tags {
    margin-bottom: 15px;
}

.entry-tags span {
    font-weight: bold;
    margin-right: 10px;
}

.entry-tags a {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 12px;
    margin: 3px 5px 3px 0;
    border-radius: 3px;
    font-size: 13px;
}

.entry-tags a:hover {
    background: #c00;
    color: #fff;
    text-decoration: none;
}

.entry-share span {
    font-weight: bold;
    margin-right: 10px;
}

.entry-share a {
    display: inline-block;
    padding: 5px 15px;
    background: #333;
    color: #fff;
    margin-right: 5px;
    border-radius: 3px;
    font-size: 13px;
}

.entry-share a:hover {
    background: #c00;
    text-decoration: none;
}

/* Related Posts */
.related-posts {
    margin-top: 40px;
}

/* Comments */
.comments-area {
    background: #fff;
    padding: 30px;
    margin-top: 30px;
    border-radius: 4px;
}

.comments-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c00;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-list .comment:last-child {
    border-bottom: none;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.comment-content {
    line-height: 1.6;
}

.comment-reply-link {
    font-size: 13px;
    color: #c00;
}

/* Comment Form */
.comment-form {
    margin-top: 30px;
}

.comment-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.comment-form textarea {
    height: 150px;
}

.comment-form .form-submit input {
    background: #c00;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.comment-form .form-submit input:hover {
    background: #a00;
}

/* No Results */
.no-results {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
}

.no-results .page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.no-results .page-content {
    color: #666;
}

.no-results .search-form {
    max-width: 400px;
    margin: 20px auto 0;
}

/* Entry Thumbnail */
.entry-thumbnail {
    margin-bottom: 20px;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Page Links */
.page-links {
    margin: 20px 0;
    font-weight: bold;
}

.page-links a {
    display: inline-block;
    padding: 5px 10px;
    background: #f5f5f5;
    margin: 0 3px;
}

.page-links a:hover {
    background: #c00;
    color: #fff;
}
