        * { 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, #0c0f15 0%, #1a1e2c 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #74c0fc; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #fff; }
        .emoji { font-size: 1.2em; margin: 0 3px; }
        .last-update { font-size: 0.9em; color: #aaa; margin-top: 30px; padding-top: 15px; border-top: 1px solid #333; }
        header {
            background: rgba(15, 20, 31, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #00a8ff, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0, 168, 255, 0.3);
            padding: 5px 0;
        }
        .my-logo:hover { transform: scale(1.03); }
        nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #ccd6f6;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #00a8ff;
            border-bottom-color: #00a8ff;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #ccd6f6;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 12px 0;
            background: rgba(30, 35, 50, 0.7);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #88d3ff; }
        .breadcrumb span { color: #aaa; }
        main { padding: 30px 0 60px; }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        article { background: rgba(22, 27, 40, 0.8); border-radius: 12px; padding: 35px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
        h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 40, 80, 0.5);
            border-left: 5px solid #00a8ff;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3a5a;
        }
        h3 { font-size: 1.6rem; color: #74c0fc; margin: 30px 0 15px; }
        h4 { font-size: 1.3rem; color: #a5d8ff; margin: 25px 0 12px; }
        p, li { margin-bottom: 1.2em; font-size: 1.1rem; color: #d0d9f0; }
        ul, ol { padding-left: 25px; margin-bottom: 1.5em; }
        blockquote {
            border-left: 4px solid #00ffaa;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            background: rgba(0, 255, 170, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            border: 2px solid #3a506b;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(42, 58, 90, 0.8), rgba(20, 30, 48, 0.9));
            border: 1px solid #3a506b;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        aside { position: sticky; top: 120px; align-self: start; }
        .sidebar-widget {
            background: rgba(22, 27, 40, 0.9);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #2a3a5a;
        }
        .sidebar-widget h3 { font-size: 1.3rem; margin-top: 0; }
        .search-form input, .comment-form input, .comment-form textarea, .score-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background: rgba(15, 20, 31, 0.8);
            border: 1px solid #3a506b;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .score-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #0066cc, #00a8ff);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover, .comment-form button:hover, .score-form button:hover { background: linear-gradient(90deg, #0052a3, #0097e6); }
        .stars { display: flex; justify-content: space-around; margin: 15px 0; font-size: 1.8rem; color: #ffd700; }
        .star { cursor: pointer; transition: transform 0.2s; }
        .star:hover { transform: scale(1.2); }
        footer {
            background: rgba(10, 15, 25, 0.98);
            padding: 50px 0 25px;
            border-top: 2px solid #2a3a5a;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 { color: #00a8ff; margin-bottom: 20px; }
        friend-link {
            display: block;
            background: rgba(42, 58, 90, 0.5);
            margin-bottom: 10px;
            padding: 12px 15px;
            border-radius: 6px;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(42, 58, 90, 0.8);
            border-left-color: #00ffaa;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #2a3a5a;
            color: #8a9bb2;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(15, 20, 31, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid #2a3a5a;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 25px 20px; }
            .header-content, .container { padding-left: 15px; padding-right: 15px; }
        }
