        * { 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: #e0e0e0;
            background: #0f1419;
            background-image: linear-gradient(to bottom right, #0f1419 0%, #1a2634 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #74c0fc; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 1.5em; margin-bottom: 1.5em; }
        .container { width: 100%; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #ffd43b; }
        .highlight { background: linear-gradient(90deg, transparent 0%, #2c3e50 50%, transparent 100%); padding: 2px 8px; border-left: 4px solid #4dabf7; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-update { font-size: 0.9em; color: #adb5bd; margin-top: 10px; }
        .site-header { padding: 25px 0 15px; border-bottom: 2px solid #1e2a3a; margin-bottom: 30px; }
        .logo-wrapper { display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(45deg, #ff6b6b, #4dabf7, #51cf66);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }
        .my-logo:hover { transform: scale(1.02); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
        .main-nav { display: flex; gap: 25px; }
        .main-nav a {
            color: #ced4da;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 6px;
            border: 1px solid transparent;
        }
        .main-nav a:hover { color: #fff; background: rgba(77, 171, 247, 0.1); border-color: #4dabf7; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ced4da;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            margin: 15px 0 30px;
            font-size: 0.9em;
            color: #94a3b8;
        }
        .breadcrumb a { color: #94a3b8; }
        .breadcrumb a:hover { color: #4dabf7; }
        .breadcrumb .separator { margin: 0 8px; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: rgba(23, 31, 41, 0.8); border-radius: 12px; padding: 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
        article h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 15px;
        }
        article h2 { font-size: 2rem; color: #4dabf7; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 1px dashed #3a506b; }
        article h3 { font-size: 1.6rem; color: #51cf66; margin: 30px 0 15px; }
        article h4 { font-size: 1.3rem; color: #ffd43b; margin: 25px 0 12px; }
        article p { margin-bottom: 1.8em; font-size: 1.1rem; text-align: justify; }
        article figure { margin: 30px auto; text-align: center; }
        article figcaption { font-style: italic; color: #94a3b8; margin-top: 8px; font-size: 0.9em; }
        .inline-img {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 45%;
            border-radius: 8px;
            border: 3px solid #3a506b;
        }
        @media (max-width: 768px) {
            .inline-img { float: none; max-width: 100%; margin: 20px auto; }
        }
        .sidebar {
            background: rgba(23, 31, 41, 0.8);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .widget { margin-bottom: 30px; }
        .widget h3 { color: #ff6b6b; margin-bottom: 15px; font-size: 1.4rem; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 6px; color: #adb5bd; font-weight: 600; }
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #3a506b;
            background: #1a2634;
            color: #e9ecef;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus { outline: none; border-color: #4dabf7; box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2); }
        textarea.form-control { min-height: 120px; resize: vertical; }
        .btn {
            padding: 13px 25px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        .btn:hover { background: linear-gradient(90deg, #339af0, #228be6); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(51, 154, 240, 0.3); }
        .stars { display: flex; gap: 10px; justify-content: center; margin: 15px 0; }
        .star { font-size: 1.8rem; color: #495057; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffd43b; }
        .comments-section { margin-top: 50px; }
        .comment { background: rgba(42, 55, 71, 0.6); border-radius: 8px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #4dabf7; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; color: #adb5bd; font-size: 0.9em; }
        .comment-author { font-weight: bold; color: #74c0fc; }
        .site-footer {
            border-top: 2px solid #1e2a3a;
            padding: 40px 0;
            margin-top: 60px;
            text-align: center;
            color: #94a3b8;
        }
        friend-link {
            display: block;
            margin: 25px 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #51cf66;
            padding: 8px 15px;
            background: rgba(81, 207, 102, 0.1);
            border-radius: 6px;
            margin: 0 10px;
        }
        .copyright { margin-top: 25px; font-size: 0.9em; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100vh;
                background: #1a2634;
                flex-direction: column;
                padding: 80px 30px 30px;
                transition: left 0.4s;
                z-index: 1000;
                box-shadow: 5px 0 15px rgba(0,0,0,0.5);
            }
            .main-nav.active { left: 0; }
            .nav-overlay {
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: rgba(0,0,0,0.7);
                z-index: 999;
                display: none;
            }
            .nav-overlay.active { display: block; }
            article { padding: 25px 20px; }
            article h1 { font-size: 2.2rem; }
            .sidebar { position: static; }
        }
