        * { 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, #0c0f1a 0%, #1a1f33 100%);
            background-attachment: fixed;
            max-width: 1200px;
            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(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .site-header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #ff6b35;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b35, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(77, 171, 247, 0.3);
            padding: 5px 10px;
            border-radius: 5px;
        }
        .my-logo:hover { animation: pulse 1s infinite; }
        @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.8; } }
        .nav-desktop { display: flex; gap: 1.5rem; }
        .nav-desktop a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid transparent;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            color: #fff;
            background: rgba(255, 107, 53, 0.15);
            border-color: #ff6b35;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: 2px solid #4dabf7;
            color: #4dabf7;
            font-size: 1.5rem;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 25, 45, 0.98);
            width: 100%;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #2a3b5c;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #b0b7c3;
            padding: 0.8rem;
            border-bottom: 1px solid #2a3b5c;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            color: #8a9bb2;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px dashed #2a3b5c;
        }
        .breadcrumb a { color: #8a9bb2; }
        .breadcrumb a:hover { color: #ff6b35; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article { background: rgba(20, 25, 45, 0.7); padding: 2rem; border-radius: 12px; border: 1px solid #2a3b5c; }
        .article-meta { color: #8a9bb2; font-size: 0.9rem; margin-bottom: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
        .last-updated { color: #ff6b35; font-weight: bold; }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 1rem;
            font-family: 'Orbitron', sans-serif;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #ff6b35;
        }
        h3 {
            font-size: 1.6rem;
            color: #a0d2ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b0e0e6;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #c0d5f0;
            background: rgba(77, 171, 247, 0.08);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: rgba(255, 107, 53, 0.15);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #ff6b35;
            margin: 1.5rem 0;
            font-weight: bold;
        }
        .emoji { margin-right: 8px; }
        ul, ol { margin: 1.5rem 0 1.5rem 2rem; }
        li { margin-bottom: 0.8rem; }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(30, 35, 55, 0.7);
            border-radius: 10px;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background: rgba(40, 45, 70, 0.8);
            border-radius: 6px;
            border: 1px solid #3a4a6e;
        }
        .link-list a:hover {
            background: rgba(77, 171, 247, 0.2);
            border-color: #4dabf7;
            transform: translateX(5px);
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid #4dabf7;
        }
        aside {
            background: rgba(20, 25, 45, 0.7);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid #2a3b5c;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #ff6b35;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ff6b35;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(30, 35, 55, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group { margin-bottom: 1.2rem; }
        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #a0d2ff;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(10, 15, 30, 0.8);
            border: 1px solid #3a4a6e;
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.3);
        }
        button, .btn {
            background: linear-gradient(90deg, #ff6b35, #ff8e53);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff8e53, #ff6b35);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active { color: #ffd700; }
        footer {
            background: rgba(10, 15, 30, 0.95);
            border-top: 3px solid #4dabf7;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            padding: 0.5rem 1rem;
            background: rgba(40, 45, 70, 0.8);
            border-radius: 5px;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b5c;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-desktop { display: none; }
            .hamburger-btn { display: block; }
            .content-wrapper, .link-list { grid-template-columns: 1fr; }
            article, aside { padding: 1.5rem; }
            .lead { font-size: 1.1rem; }
        }
