* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f14;
            color: #e0e0e0;
            line-height: 1.75;
            padding: 0 16px;
            scroll-behavior: smooth;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #1a1a24;
            padding: 20px 28px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            margin-top: 20px;
            margin-bottom: 20px;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            display: block;
            margin: 24px 0;
        }
        h1,
        h2,
        h3,
        h4 {
            color: #f5e6d3;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            margin: 32px 0 16px;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 12px;
            text-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 16px;
            border-left: 6px solid #b8860b;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            margin: 28px 0 12px;
            color: #e8d5b7;
        }
        h4 {
            font-size: 1.2rem;
            margin: 20px 0 8px;
            color: #d4c5a9;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d5d0c8;
        }
        strong {
            color: #f0d9b5;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(184, 134, 11, 0.25), rgba(184, 134, 11, 0.05));
            padding: 2px 8px;
            border-radius: 6px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6d3;
            text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd700;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 300;
            color: #b8860b;
            display: block;
            letter-spacing: 4px;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 1px solid #2a2a3a;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #f0c27f;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a3a;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            list-style: none;
            padding: 8px 0;
        }
        .nav-menu li a {
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }
        .nav-menu li a:hover {
            background: #b8860b33;
            color: #ffd700;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #999;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b8860b;
        }
        .breadcrumb span {
            color: #666;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin: 24px 0 16px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 1px solid #3a3a4a;
            border-radius: 40px;
            background: #12121a;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #b8860b;
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #b8860b;
            color: #0f0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-box button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            margin: 48px 0 32px;
            padding: 28px 24px;
            background: #14141e;
            border-radius: 20px;
            border: 1px solid #2a2a3a;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section textarea,
        .rating-section select,
        .rating-section input[type="number"] {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #3a3a4a;
            border-radius: 12px;
            background: #12121a;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #b8860b;
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #b8860b;
            color: #0f0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-stars .star:hover {
            color: #ffd700;
            transform: scale(1.15);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 16px 0;
            list-style: none;
        }
        .link-list li a {
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .link-list li a:hover {
            border-bottom-color: #b8860b;
            text-decoration: none;
        }
        .friend-link {
            display: block;
            padding: 24px 20px;
            margin: 32px 0 16px;
            border-top: 2px solid #2a2a3a;
            border-bottom: 2px solid #2a2a3a;
            background: #14141e;
            border-radius: 16px;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 12px;
            background: #1e1e2a;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: background 0.3s;
        }
        .friend-link a:hover {
            background: #b8860b33;
            text-decoration: none;
        }
        .footer {
            padding: 28px 0 16px;
            text-align: center;
            border-top: 1px solid #2a2a3a;
            margin-top: 40px;
            color: #888;
            font-size: 0.9rem;
        }
        .footer a {
            color: #b8860b;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #777;
            text-align: right;
            margin-top: 8px;
            font-style: italic;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .info-card {
            background: #14141e;
            padding: 20px 22px;
            border-radius: 16px;
            border: 1px solid #2a2a3a;
            transition: border-color 0.3s, transform 0.2s;
        }
        .info-card:hover {
            border-color: #b8860b55;
            transform: translateY(-2px);
        }
        .info-card h4 {
            margin-top: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #14141e;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2a3a;
        }
        th {
            background: #1e1e2a;
            color: #f0d9b5;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1a28;
        }
        blockquote {
            border-left: 6px solid #b8860b;
            padding: 12px 24px;
            margin: 24px 0;
            background: #14141e;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #c8c0b0;
        }
        .toc {
            background: #14141e;
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid #2a2a3a;
            margin: 24px 0;
        }
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        .toc ul li {
            padding: 4px 0;
        }
        .toc ul li a {
            color: #c8b89a;
        }
        .toc ul li a:hover {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 16px 12px;
                margin-top: 12px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .two-col {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 4px;
                padding: 12px 0 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 16px;
                border-radius: 12px;
                background: #1e1e2a;
            }
            .search-box button {
                padding: 14px 20px;
                font-size: 0.9rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .wrapper {
                padding: 12px 8px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 10px;
            }
            p {
                font-size: 0.98rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
