        * { 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: #333;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #6c9bff; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-bottom: 2px solid #6c9bff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #6c9bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(108, 155, 255, 0.5);
        }
        .my-logo:hover { transform: scale(1.05); }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .nav-desktop a:hover { background: rgba(108, 155, 255, 0.2); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6c9bff;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 12, 29, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #444;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #ffcc00; }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            flex-grow: 1;
        }
        article { background: rgba(26, 26, 46, 0.7); padding: 2.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 { font-size: 3.2rem; margin-bottom: 1.5rem; color: #ffcc00; text-align: center; border-bottom: 3px solid #6c9bff; padding-bottom: 1rem; }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1.2rem; color: #6c9bff; border-left: 5px solid #ffcc00; padding-left: 1rem; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: #9bc9ff; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: #b8d4ff; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .highlight { background: rgba(255, 204, 0, 0.1); border-left: 4px solid #ffcc00; padding: 1.2rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        b, strong { color: #ffcc00; font-weight: 700; }
        .featured-img {
            width: 80%;
            margin: 2rem auto;
            border: 3px solid #6c9bff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(108, 155, 255, 0.4);
        }
        aside {
            background: rgba(26, 26, 46, 0.7);
            padding: 2rem;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget h3 { font-size: 1.5rem; color: #ffcc00; margin-bottom: 1rem; border-bottom: 2px solid #444; padding-bottom: 0.5rem; }
        .search-box input {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #6c9bff;
            border-radius: 8px;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 0.8rem;
            padding: 0.9rem;
            background: linear-gradient(90deg, #6c9bff, #4a7dff);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover { background: linear-gradient(90deg, #4a7dff, #2a5dff); }
        .rating-widget .stars { font-size: 1.8rem; color: #ffcc00; margin-bottom: 1rem; cursor: pointer; }
        .rating-widget .stars span { margin-right: 0.2rem; }
        .rating-widget .stars span:hover { transform: scale(1.2); }
        .comment-form textarea, .score-form input {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 2px solid #444;
            border-radius: 8px;
            background: #1a1a2e;
            color: #fff;
            font-family: inherit;
        }
        .comment-form button, .score-form button {
            padding: 0.9rem 1.8rem;
            background: linear-gradient(90deg, #ffcc00, #ffaa00);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        footer {
            background: #0c0c1d;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #6c9bff;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .friend-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
        .friend-links a {
            background: rgba(108, 155, 255, 0.1);
            padding: 0.7rem 1.2rem;
            border-radius: 6px;
            border: 1px solid #6c9bff;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1100px) {
            .main-container { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .main-container { padding: 0 1rem; }
            article { padding: 1.5rem; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            .featured-img { width: 100%; }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb { padding: 1rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
        }
