        * {
            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, #0f1b2f 0%, #1a2b45 100%);
            color: #e0f0ff;
            line-height: 1.7;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #80ccff;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        header {
            padding: 25px 0;
            border-bottom: 2px solid #2a4365;
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease infinite alternate;
        }
        @keyframes logoGlow {
            from { filter: drop-shadow(0 0 5px rgba(255,107,107,0.7)); }
            to { filter: drop-shadow(0 0 15px rgba(78,205,196,0.9)); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(42, 67, 101, 0.6);
        }
        .nav-links a:hover {
            background: #2a4365;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4da6ff;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            margin-bottom: 25px;
            font-size: 0.95rem;
            color: #a0c8ff;
            border-bottom: 1px dashed #3a506b;
        }
        .breadcrumb a { color: #a0c8ff; }
        .breadcrumb a:hover { color: #fff; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        main {
            background: rgba(22, 33, 52, 0.85);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid #3a506b;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        aside {
            background: rgba(22, 33, 52, 0.85);
            padding: 25px;
            border-radius: 20px;
            border: 1px solid #3a506b;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #fff;
            text-align: center;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding-bottom: 15px;
            border-bottom: 3px solid #3a506b;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #96ceb4;
            padding-left: 15px;
            border-left: 5px solid #4ecdc4;
        }
        h3 {
            font-size: 1.7rem;
            margin: 30px 0 15px;
            color: #ffeaa7;
        }
        h4 {
            font-size: 1.4rem;
            margin: 25px 0 12px;
            color: #a0c8ff;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #cae6ff;
            background: rgba(58, 80, 107, 0.3);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #ff6b6b;
            margin-bottom: 35px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.15), rgba(78,205,196,0.15));
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        blockquote {
            border-left: 4px solid #45b7d1;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #cae6ff;
            background: rgba(69, 183, 209, 0.08);
            padding: 20px;
            border-radius: 0 12px 12px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
        }
        .internal-links {
            background: rgba(42, 67, 101, 0.4);
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
        }
        .internal-links h4 { margin-top: 0; }
        .search-module, .comments-module, .rating-module {
            background: rgba(30, 45, 70, 0.9);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 35px;
            border: 1px solid #4a6285;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: #96ceb4;
        }
        .module-title i { font-size: 1.5rem; }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            margin-bottom: 18px;
            background: rgba(22, 33, 52, 0.8);
            border: 1px solid #3a506b;
            border-radius: 8px;
            color: #e0f0ff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4da6ff;
        }
        button {
            background: linear-gradient(90deg, #4ecdc4, #45b7d1);
            color: #0f1b2f;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(78, 205, 196, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffeaa7;
            cursor: pointer;
        }
        .stars i:hover { transform: scale(1.2); }
        .article-img {
            margin: 35px auto;
            text-align: center;
        }
        .article-img figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #a0c8ff;
            font-size: 0.95rem;
        }
        footer {
            margin-top: 60px;
            padding: 40px 0;
            border-top: 2px solid #2a4365;
            text-align: center;
            color: #a0c8ff;
        }
        friend-link {
            display: block;
            margin: 25px 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #ffeaa7;
            font-weight: 600;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 30px;
            color: #8aacc8;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #8aacc8;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px dashed #3a506b;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .my-logo {
                font-size: 2.2rem;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 35px;
                right: 20px;
            }
            main, aside {
                padding: 25px 20px;
            }
        }
