        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f7fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2a3a 0%, #0d1520 100%);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            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;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255, 70, 85, 0.2);
            color: #ffcc00;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: #fff;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 1.5rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: #1a2a3a;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: #0d1520;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ccc;
        }
        .article-body h3 {
            font-size: 1.4rem;
            color: #ff4655;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff9e6, #ffe6e6);
            border-left: 5px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #1a2a3a;
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffcc00;
            display: block;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 3px solid #ffcc00;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #1a2a3a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #ffcc00;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-btn {
            background: #ff4655;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-btn:hover {
            background: #e63e4d;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-text {
            font-size: 0.9rem;
            color: #666;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
        }
        .comment-form button {
            background: #1a2a3a;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
        }
        .comment-form button:hover {
            background: #0d1520;
        }
        .web-links {
            background: #fff;
            padding: 2.5rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #ff4655;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .site-footer {
            background: #0d1520;
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-col h3 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: #ff4655;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a2a3a;
                padding: 1rem;
                display: none;
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-title {
                font-size: 2rem;
            }
            .article-main {
                padding: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-bold {
            font-weight: 800;
            color: #1a2a3a;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
