        * { 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: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a9d8f;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #2a9d8f, #e9c46a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(42, 157, 143, 0.3);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(42, 157, 143, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e9c46a;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            border-top: 1px solid #2a9d8f;
            padding: 20px;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin: 15px 0; }
        .nav-mobile a {
            display: block;
            padding: 10px;
            border-left: 4px solid #2a9d8f;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #e9c46a; }
        .breadcrumb span { color: #2a9d8f; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article { background: rgba(20, 25, 40, 0.8); border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        h1 {
            font-size: 2.8rem;
            color: #e9c46a;
            margin-bottom: 20px;
            border-left: 6px solid #2a9d8f;
            padding-left: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #2a9d8f;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.6rem;
            color: #4dabf7;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #a5d8ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro { font-size: 1.3rem; color: #ccc; font-weight: 300; }
        .highlight { background: rgba(233, 196, 106, 0.1); border-left: 4px solid #e9c46a; padding: 15px; margin: 20px 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .keyword { font-weight: bold; color: #e9c46a; }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #2a9d8f;
            margin: 30px auto;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
        }
        .sidebar {
            background: rgba(20, 25, 40, 0.8);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 30px; }
        .widget-title {
            color: #e9c46a;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .search-form { display: flex; }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #2a9d8f;
            border-radius: 5px 0 0 5px;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .search-btn {
            background: #2a9d8f;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #21867a; }
        .rating-widget input[type="radio"] { display: none; }
        .rating-widget label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget input:checked ~ label,
        .rating-widget label:hover,
        .rating-widget label:hover ~ label { color: #ffd700; }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #444;
            background: rgba(255,255,255,0.05);
            color: white;
        }
        .submit-btn {
            background: linear-gradient(90deg, #2a9d8f, #264653);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s;
        }
        .submit-btn:hover { transform: scale(1.05); }
        .site-footer {
            background: rgba(5, 10, 20, 0.95);
            border-top: 2px solid #2a9d8f;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .friend-links a {
            background: rgba(42, 157, 143, 0.2);
            padding: 10px 20px;
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            color: #888;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        .last-updated {
            color: #888;
            font-style: italic;
            margin-bottom: 20px;
            display: block;
        }
        .btn {
            display: inline-block;
            background: #e76f51;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            margin: 10px 5px;
            font-weight: bold;
        }
        .btn:hover { background: #d65c3e; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, .sidebar { padding: 20px; }
        }
