        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1, h2, h3, h4 {
            color: #1a237e;
            margin-top: 1.5em;
            margin-bottom: 0.8em;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #ff5722; padding-bottom: 0.4em; }
        h2 { font-size: 2.2rem; color: #283593; border-left: 5px solid #ff9800; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #3949ab; }
        h4 { font-size: 1.5rem; color: #5c6bc0; }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background: #e3f2fd;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #2196f3;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2em 0.4em;
            border-radius: 3px;
            font-weight: 600;
        }
        strong {
            color: #d32f2f;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #1a237e, #283593);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: #4caf50;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffeb3b;
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #283593;
            padding: 1rem;
            border-radius: 0 0 10px 10px;
            margin-top: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e3f2fd;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #5a67d8;
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: #a0aec0;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 2px dashed #ddd;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.85rem 1rem;
            border: 2px solid #c5cae9;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: #3949ab;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #283593;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #444;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #3949ab;
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff5722, #ff9800);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .related-links {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #1a73e8;
        }
        .related-links h3 {
            margin-top: 0;
            color: #1a73e8;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .related-links li {
            background: white;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border: 1px solid #d1e3ff;
            transition: transform 0.3s;
        }
        .related-links li:hover {
            transform: translateX(5px);
            border-color: #1a73e8;
        }
        .update-info {
            font-size: 0.9rem;
            color: #777;
            text-align: right;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
            margin-top: 2rem;
        }
        .site-footer {
            background: #1a237e;
            color: #e3f2fd;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffeb3b;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
            .header-content { flex-wrap: wrap; }
        }
