        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4a6ee0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b8b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fff9c4;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .emoji { font-size: 1.2em; }
        header {
            background: linear-gradient(90deg, #2d3b8f, #4a6ee0);
            color: white;
            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.my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a.my-logo:hover { color: #ffde59; }
        .logo-icon {
            color: #ffde59;
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffde59;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffde59;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #2d3b8f;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #3f4fa3;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background: #3f4fa3;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f0f4f8;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #888;
        }
        main {
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        }
        h1 {
            font-size: 2.8rem;
            color: #2d3b8f;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #4a6ee0;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eaeff7;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff6b8b;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #333;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-meta {
            color: #666;
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ddd;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .internal-links {
            background: #f8fbff;
            border-left: 5px solid #4a6ee0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
        }
        .internal-links li:before {
            content: '🔗';
            margin-right: 8px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #2d3b8f;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-icon {
            color: #ff6b8b;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #d1d9e6;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4a6ee0;
            box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.1);
        }
        button, .btn {
            background: linear-gradient(90deg, #4a6ee0, #2d3b8f);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff6b8b, #ff4757);
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(255, 107, 139, 0.3);
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span:hover,
        .stars span:hover ~ span {
            color: #ffde59;
        }
        .stars .active {
            color: #ffde59;
        }
        footer {
            background: #1a223f;
            color: #ccd6f6;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffde59;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccd6f6;
        }
        .footer-links a:hover {
            color: #ffde59;
            padding-left: 5px;
            display: inline-block;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            border-left: 4px solid #4a6ee0;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a345c;
            font-size: 0.9rem;
            color: #8892b0;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            article { padding: 1.5rem; }
            .header-container, .footer-container {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }
