        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0f1923;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, rgba(255,70,85,0.1), transparent);
            padding: 2px 8px;
            border-left: 3px solid #ff4655;
        }
        .site-header {
            background: #0f1923;
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ece8e1;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ece8e1;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #ff4655;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff4655;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ece8e1;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background: #1a242f;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 1rem 0;
        }
        .nav-mobile a {
            color: #ece8e1;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .nav-mobile a:hover {
            background: #ff4655;
            color: #0f1923;
        }
        .breadcrumb {
            background: #ece8e1;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 5px;
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: #fff;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 2px solid #ece8e1;
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #0f1923;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .meta-info i {
            margin-right: 5px;
            color: #ff4655;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section h2 {
            font-size: 1.8rem;
            color: #0f1923;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ddd;
        }
        .content-section h3 {
            font-size: 1.4rem;
            color: #333;
            margin: 1.5rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .content-section ul, .content-section ol {
            margin-left: 2rem;
            margin-bottom: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            font-size: 0.9rem;
            background: #f9f9f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #0f1923;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff4655;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #0f1923;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active {
            color: #ffc107;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: #0f1923;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #ff4655;
        }
        .comments-list .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: #0f1923;
        }
        .comment-date {
            color: #888;
        }
        .comment-text {
            color: #555;
        }
        .footer-links {
            background: #1a242f;
            padding: 2.5rem 0;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #25303d;
            padding: 1rem;
            border-radius: 6px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ece8e1;
            display: block;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: #ff4655;
        }
        .site-footer {
            background: #0f1923;
            color: #98a1b3;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            border-top: 1px solid #25303d;
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-main { padding: 1.5rem; }
            .article-header h1 { font-size: 2rem; }
            .header-inner, .main-content-area { padding: 0 15px; }
        }
