* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0f0c1b;
            color: #e6e2f0;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #1a1530;
            box-shadow: 0 0 60px rgba(106, 13, 173, 0.25);
            border-radius: 36px 36px 24px 24px;
            overflow: hidden;
            padding: 0 24px 24px;
        }
        a {
            color: #c8a8f0;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #f0d070;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            margin: 32px auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            color: #f5e9ff;
            text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
            margin: 32px 0 16px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #d9c4fc;
            border-left: 6px solid #a855f7;
            padding-left: 18px;
            margin: 48px 0 20px;
        }
        h3 {
            font-size: 1.5rem;
            color: #c7b0f0;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            color: #b89ce8;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #ddD6f0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            font-size: 0.95rem;
            padding: 16px 0 8px;
            color: #9888b8;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "⚡";
            margin-right: 12px;
            color: #a855f7;
        }
        .breadcrumb a {
            color: #b89ce8;
        }
        .breadcrumb a:hover {
            color: #f0d070;
        }
        .breadcrumb .active {
            color: #e6d8ff;
            font-weight: 500;
        }
        .header-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0 12px;
            border-bottom: 2px solid #2a1f4a;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5e9ff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            padding: 4px 0;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #9888b8;
            color: #9888b8;
            display: block;
            font-style: italic;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            text-decoration: none;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .nav-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
        }
        .nav-bar a {
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 40px;
            transition: background 0.3s, color 0.3s;
            font-size: 0.95rem;
        }
        .nav-bar a:hover {
            background: #2a1f4a;
            color: #f0d070;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #e6e2f0;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 12px;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: #2a1f4a;
        }
        #nav-toggle {
            display: none;
        }
        .search-block {
            background: #251d3e;
            padding: 36px 24px;
            border-radius: 28px;
            margin: 32px 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .search-block form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            flex: 1 1 100%;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-block input[type="text"] {
            flex: 1 1 200px;
            padding: 14px 20px;
            border-radius: 60px;
            border: none;
            background: #110d1f;
            color: #e6e2f0;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .search-block input[type="text"]:focus {
            outline: 2px solid #a855f7;
        }
        .search-block button {
            padding: 14px 36px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .search-block button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(168, 85, 247, 0.5);
        }
        .comment-area,
        .score-area {
            background: #251d3e;
            padding: 28px 24px;
            border-radius: 28px;
            margin: 32px 0 24px;
        }
        .comment-area form,
        .score-area form {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            max-width: 700px;
        }
        .comment-area textarea {
            flex: 1 1 100%;
            padding: 16px 20px;
            border-radius: 20px;
            border: none;
            background: #110d1f;
            color: #e6e2f0;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .comment-area textarea:focus {
            outline: 2px solid #a855f7;
        }
        .comment-area input[type="text"],
        .score-area input[type="number"],
        .score-area input[type="text"] {
            padding: 12px 18px;
            border-radius: 40px;
            border: none;
            background: #110d1f;
            color: #e6e2f0;
            font-size: 1rem;
            flex: 1 1 180px;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .comment-area input:focus,
        .score-area input:focus {
            outline: 2px solid #a855f7;
        }
        .comment-area button,
        .score-area button {
            padding: 12px 32px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            font-size: 1rem;
        }
        .comment-area button:hover,
        .score-area button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(168, 85, 247, 0.5);
        }
        .score-area .star-group {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        .score-area .star-group i {
            font-size: 1.6rem;
            color: #f0c050;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .score-area .star-group i:hover {
            transform: scale(1.2);
        }
        .friend-link {
            display: block;
            background: #1e1838;
            padding: 28px 24px;
            border-radius: 28px;
            margin: 40px 0 20px;
            border: 1px solid #2f2355;
        }
        .friend-link h3 {
            font-size: 1.3rem;
            margin-bottom: 18px;
            color: #d9c4fc;
        }
        .friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
        }
        .friend-link li a {
            font-weight: 500;
            padding: 4px 6px;
        }
        .footer-copyright {
            text-align: center;
            padding: 28px 12px 16px;
            color: #887caa;
            font-size: 0.95rem;
            border-top: 1px solid #2a1f4a;
            margin-top: 20px;
        }
        .footer-copyright p {
            margin-bottom: 6px;
            color: #887caa;
        }
        .updated {
            display: inline-block;
            background: #2a1f4a;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #c8a8f0;
            margin: 8px 0 24px;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .badge {
            background: #2f2355;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #c8a8f0;
            display: inline-block;
            margin-right: 8px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        .card {
            background: #1e1838;
            padding: 20px 18px;
            border-radius: 24px;
            border: 1px solid #2f2355;
            transition: transform 0.3s, border-color 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #a855f7;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 12px 20px;
                border-radius: 24px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-area {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1530;
                padding: 16px 0 20px;
                border-radius: 0 0 28px 28px;
                gap: 4px;
            }
            .nav-bar a {
                padding: 10px 18px;
                font-size: 1.05rem;
                border-radius: 12px;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            #nav-toggle:checked~.hamburger .fa-bars {
                display: none;
            }
            #nav-toggle:checked~.hamburger .fa-times {
                display: inline-block;
            }
            .hamburger .fa-times {
                display: none;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                flex: 1 1 auto;
            }
            .comment-area form,
            .score-area form {
                flex-direction: column;
            }
            .breadcrumb {
                font-size: 0.85rem;
                gap: 4px 8px;
            }
            .friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (min-width: 769px) {
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none !important;
            }
            .nav-bar {
                display: flex !important;
            }
        }
        blockquote {
            border-left: 4px solid #a855f7;
            padding: 16px 24px;
            margin: 24px 0;
            background: #1e1838;
            border-radius: 0 20px 20px 0;
            font-style: italic;
            color: #cfc4e8;
        }
        .highlight {
            color: #f0d070;
            font-weight: 600;
        }
        .list-star {
            list-style: none;
            padding-left: 0;
        }
        .list-star li {
            padding: 6px 0 6px 28px;
            position: relative;
        }
        .list-star li::before {
            content: "✨";
            position: absolute;
            left: 0;
            top: 6px;
            font-size: 1.1rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1e1838;
            border-radius: 20px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2f2355;
        }
        th {
            background: #2a1f4a;
            color: #d9c4fc;
            font-weight: 600;
        }
        tr:hover {
            background: #251d3e;
        }
        .tag {
            display: inline-block;
            background: #2f2355;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #b89ce8;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
