        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.7;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .site-header {
            background: linear-gradient(90deg, #2a2d7a 0%, #4a50b5 100%);
            color: white;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .my-logo a {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffde59;
            text-decoration: none;
            text-shadow: 3px 3px 0 #2a2d7a, 5px 5px 0 rgba(0,0,0,0.1);
            font-family: 'Comic Sans MS', cursive, sans-serif;
            letter-spacing: -1px;
            transition: all 0.3s ease;
        }
        .my-logo a:hover {
            color: #fff;
            text-shadow: 3px 3px 0 #ffde59, 5px 5px 0 rgba(0,0,0,0.2);
            transform: scale(1.03);
        }
        .my-logo .tagline {
            font-size: 0.9rem;
            color: #b8c1ec;
            margin-top: 0.2rem;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: #ffde59;
            color: #2a2d7a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #e9eff5;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0d9e6;
        }
        .breadcrumb a {
            color: #4a50b5;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 0.5rem;
        }
        .main-content {
            flex: 1;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            color: #2a2d7a;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #ffde59;
            padding-bottom: 0.7rem;
            line-height: 1.2;
        }
        .article-content h2 {
            color: #4a50b5;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e4edf5;
            font-size: 1.9rem;
        }
        .article-content h3 {
            color: #2a2d7a;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-content h4 {
            color: #666;
            margin: 1.5rem 0 0.8rem;
            font-size: 1.2rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            background: #f8f9ff;
            padding: 1.5rem;
            border-left: 5px solid #4a50b5;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .article-content strong {
            color: #2a2d7a;
            font-weight: 700;
        }
        .article-content em {
            color: #5a5fbf;
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.7rem;
        }
        .article-content blockquote {
            border-left: 4px solid #ffde59;
            background: #fffef0;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            border-radius: 0 10px 10px 0;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .article-content a {
            color: #4a50b5;
            text-decoration: none;
            border-bottom: 1px dashed #4a50b5;
            transition: all 0.2s;
        }
        .article-content a:hover {
            color: #ff3366;
            border-bottom: 1px solid #ff3366;
        }
        .info-box {
            background: linear-gradient(to right, #eef2ff, #f0f9ff);
            border: 1px solid #c3dafe;
            border-radius: 12px;
            padding: 1.8rem;
            margin: 2rem 0;
            box-shadow: inset 0 0 10px rgba(195, 218, 254, 0.3);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #888;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #2a2d7a;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #ffde59;
            font-size: 1.4rem;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid #d0d9e6;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #4a50b5;
            box-shadow: 0 0 0 3px rgba(74, 80, 181, 0.2);
        }
        .search-form button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.9rem;
            background: linear-gradient(90deg, #4a50b5, #2a2d7a);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #2a2d7a, #4a50b5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 45, 122, 0.3);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ffde59;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget button {
            width: 100%;
            padding: 0.8rem;
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #218838;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            color: #555;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.7rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: #f0f7ff;
            color: #2a2d7a;
            padding-left: 1.2rem;
        }
        .comments-section {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid #d0d9e6;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #4a50b5;
        }
        .comment-form button {
            padding: 1rem 2.5rem;
            background: linear-gradient(90deg, #4a50b5, #2a2d7a);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 45, 122, 0.3);
        }
        .site-footer {
            background: #1a1c40;
            color: #b8c1ec;
            padding: 3rem 2rem 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: #ffde59;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #b8c1ec;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ffde59;
        }
        friend-link {
            display: block;
            background: #25285a;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: #ffde59;
            font-weight: 600;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2d7a;
            color: #8a94c7;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .my-logo a {
                font-size: 2rem;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a2d7a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #4a50b5;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-content, .article-content, .sidebar, .comments-section {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
        }
