        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }
        
        .header {
    background-color: #fff;
    border-bottom: 3px solid #d32f2f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: none;
    letter-spacing: -1px;
}

.header-meta {
    text-align: right;
    font-size: 13px;
}

.header-time {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    display: block;
    margin-bottom: 5px;
}

.header-weather {
    color: #666;
    font-size: 12px;
}

/* NAVIGATION */
.nav {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    border-right: 1px solid #e0e0e0;
}

.nav-item:last-child {
    border-right: none;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #fafafa;
    color: #d32f2f;
    border-bottom-color: #d32f2f;
}

.nav-link.active {
    color: #d32f2f;
    border-bottom-color: #d32f2f;
    background-color: #fff5f5;
}
        
        /* MAIN CONTENT */
        .main {
            margin: 30px auto;
        }
        
        /* ARTICLE */
        .article {
            background: white;
            padding: 40px;
            border-left: 4px solid #d32f2f;
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            font-size: 12px;
            color: #999;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .breadcrumb a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: 600;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .article-title {
            font-family: 'Lora', serif;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        
        .article-meta {
            display: flex;
            gap: 20px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
            margin-bottom: 30px;
            font-size: 13px;
            color: #666;
            flex-wrap: wrap;
        }
        
        .article-meta span {
            font-weight: 600;
        }
        
        .article-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            margin-bottom: 30px;
            display: block;
            border-radius: 4px;
        }
        
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        /* RELATED NEWS */
        .related-section {
            background: white;
            padding: 30px;
            border-left: 4px solid #d32f2f;
            margin-bottom: 30px;
        }
        
        .related-title {
            font-family: 'Lora', serif;
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .related-card {
            border: 1px solid #e0e0e0;
            border-left: 3px solid #d32f2f;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .related-card:hover {
            box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
            transform: translateY(-2px);
        }
        
        .related-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
        }
        
        .related-body {
            padding: 12px;
        }
        
        .related-card-title {
            font-family: 'Lora', serif;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a1a;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        
        .related-card:hover .related-card-title {
            color: #d32f2f;
        }
        
        .related-time {
            font-size: 11px;
            color: #999;
            font-weight: 600;
        }
        
        /* FOOTER */
        .footer {
            background-color: #212121;
            color: #999;
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid #d32f2f;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            color: white;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .footer-section p, .footer-section li {
            font-size: 13px;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #d32f2f;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .article {
                padding: 20px;
            }
            
            .article-title {
                font-size: 24px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo {
                font-size: 24px;
            }
            
            .header-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .article {
                padding: 15px;
                margin-bottom: 15px;
            }
            
            .article-title {
                font-size: 18px;
                margin-bottom: 15px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-link {
                padding: 12px 15px;
                font-size: 13px;
            }
            
            .breadcrumb {
                font-size: 11px;
            }
        }