* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0b0d;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #f5c518;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffde6b;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #131418;
            border-radius: 28px;
            padding: 20px 24px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #2a2a30;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 900;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #f5c518, #d4a30e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 12px rgba(245, 197, 24, 0.25);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c518;
            color: #f5c518;
            font-size: 1.8rem;
            padding: 6px 14px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c518;
            color: #131418;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            border-bottom-color: #f5c518;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.9rem;
            color: #9a9aa0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb span {
            color: #c0c0c8;
        }
        .breadcrumb a {
            color: #f5c518;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin: 28px 0 12px;
            line-height: 1.2;
            background: linear-gradient(to right, #f5c518, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            border-left: 6px solid #f5c518;
            padding-left: 18px;
            color: #f0e6d0;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #e8dcc8;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d4c8b4;
        }
        p {
            margin: 0 0 20px;
            font-size: 1.05rem;
            color: #d6d4d0;
        }
        .highlight {
            background: #2a2a30;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
            color: #f5c518;
        }
        .feature-img {
            width: 100%;
            max-width: 820px;
            height: auto;
            border-radius: 24px;
            margin: 28px 0 32px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
            border: 1px solid #3a3a44;
            display: block;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #9a9aa0;
            margin-bottom: 24px;
            display: block;
            border-bottom: 1px dashed #2a2a30;
            padding-bottom: 12px;
        }
        .btn-score,
        .btn-comment {
            background: #1e1e26;
            border: 1px solid #3a3a44;
            color: #e8e6e3;
            padding: 10px 22px;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-score:hover,
        .btn-comment:hover {
            background: #f5c518;
            color: #131418;
            border-color: #f5c518;
        }
        .search-form,
        .comment-form,
        .score-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 24px 0 32px;
            padding: 20px 24px;
            background: #1a1c22;
            border-radius: 24px;
            border: 1px solid #2e2e38;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .score-form select {
            flex: 1 1 200px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #3a3a44;
            background: #0f0f14;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus,
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form select:focus {
            border-color: #f5c518;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            background: #f5c518;
            border: none;
            color: #131418;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #ffde6b;
            transform: scale(1.02);
        }
        .friend-link {
            display: block;
            margin-top: 40px;
            padding: 28px 24px;
            background: #1a1c22;
            border-radius: 24px;
            border: 1px solid #2e2e38;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            font-weight: 500;
        }
        .friend-link a:hover {
            text-decoration: underline;
        }
        .footer-copy {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a2a30;
            font-size: 0.9rem;
            color: #9a9aa0;
            text-align: center;
        }
        @media (max-width: 820px) {
            .container {
                padding: 16px 14px 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 18px 0 8px;
                gap: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                font-size: 1.05rem;
                padding: 8px 0;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .search-form,
            .comment-form,
            .score-form {
                padding: 16px;
                flex-direction: column;
            }
            .btn-score,
            .btn-comment {
                width: 100%;
                justify-content: center;
            }
            .friend-link a {
                display: block;
                margin: 6px 0;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                border-radius: 18px;
                padding: 12px 10px 24px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .feature-img {
                border-radius: 16px;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .inline-code {
            background: #1e1e28;
            padding: 2px 8px;
            border-radius: 6px;
            font-family: monospace;
            color: #f5c518;
        }
        blockquote {
            border-left: 4px solid #f5c518;
            margin: 24px 0;
            padding: 12px 24px;
            background: #1a1c22;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #c8c4bc;
        }
        hr {
            border: none;
            border-top: 2px solid #2a2a30;
            margin: 40px 0;
        }
