* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0f14;
            color: #e0e4ea;
            line-height: 1.7;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1280px;
            margin: 0 auto;
            background: #14181f;
            border-radius: 28px;
            padding: 20px 28px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            display: block;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            letter-spacing: 0.02em;
            color: #f0f4fa;
            margin-top: 1.6em;
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f5c542;
            padding-left: 24px;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid #2d3745;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5c542;
        }
        h4 {
            font-size: 1.15rem;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-left: 1.8em;
            margin-bottom: 1.4em;
        }
        li {
            margin-bottom: 0.4em;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 8px;
            font-size: 0.92rem;
            color: #8896a8;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #5a6a7e;
        }
        .breadcrumb a {
            color: #aab8c9;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0 10px;
            border-bottom: 1px solid #252f3a;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f5c542;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #d9a83a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #8896a8;
            -webkit-text-fill-color: #8896a8;
            display: block;
            font-style: italic;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: inherit;
            background: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3a4758;
            color: #e0e4ea;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f5c542;
            color: #f5c542;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        nav a {
            color: #c8d2de;
            font-weight: 500;
            font-size: 0.98rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .search-box {
            display: flex;
            gap: 0;
            margin: 20px 0 10px;
            max-width: 520px;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2d3745;
            background: #1a212b;
            transition: 0.3s;
        }
        .search-box:focus-within {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .search-box input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: #e0e4ea;
            font-size: 1rem;
            outline: none;
        }
        .search-box input::placeholder {
            color: #5a6a7e;
        }
        .search-box button {
            background: #f5c542;
            border: none;
            padding: 0 24px;
            color: #0d0f14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px 28px;
            padding: 20px 0 14px;
            border-top: 1px solid #252f3a;
            margin-top: 30px;
        }
        .stars {
            display: flex;
            gap: 6px;
            font-size: 1.7rem;
            color: #3a4758;
            cursor: pointer;
        }
        .stars i {
            transition: 0.2s;
        }
        .stars i.active,
        .stars i:hover {
            color: #f5c542;
        }
        .stars i:hover~i {
            color: #3a4758;
        }
        .rating-area form {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .rating-area input[type="number"] {
            width: 70px;
            padding: 8px 10px;
            border-radius: 10px;
            border: 1px solid #2d3745;
            background: #1a212b;
            color: #e0e4ea;
            font-size: 1rem;
            text-align: center;
        }
        .rating-area button,
        .comment-area button {
            background: #f5c542;
            border: none;
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 600;
            color: #0d0f14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .rating-area button:hover,
        .comment-area button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-area {
            padding: 20px 0 10px;
            border-top: 1px solid #252f3a;
            margin-top: 20px;
        }
        .comment-area textarea {
            width: 100%;
            max-width: 700px;
            padding: 16px 20px;
            border-radius: 18px;
            border: 1px solid #2d3745;
            background: #1a212b;
            color: #e0e4ea;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            transition: 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #f5c542;
        }
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 700px;
        }
        .comment-area .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .comment-area input[type="text"] {
            padding: 10px 18px;
            border-radius: 30px;
            border: 1px solid #2d3745;
            background: #1a212b;
            color: #e0e4ea;
            flex: 1;
            min-width: 160px;
            outline: none;
        }
        .comment-area input[type="text"]:focus {
            border-color: #f5c542;
        }
        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0 20px;
        }
        .card {
            background: #1a212b;
            border-radius: 20px;
            padding: 22px 20px 20px;
            border: 1px solid #252f3a;
            transition: 0.25s;
        }
        .card:hover {
            border-color: #f5c542;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(245, 197, 66, 0.08);
        }
        .card i {
            font-size: 2rem;
            color: #f5c542;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0.2em;
        }
        .map-detail {
            margin: 40px 0 20px;
            padding: 24px 0 8px;
            border-top: 1px solid #252f3a;
        }
        .map-detail h2 i {
            margin-right: 12px;
            color: #f5c542;
        }
        blockquote {
            border-left: 4px solid #f5c542;
            padding: 14px 24px;
            margin: 24px 0;
            background: #1a212b;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #c8d2de;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 30px;
            font-size: 0.98rem;
        }
        .stats-table th {
            background: #1f2937;
            color: #f5c542;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #2d3745;
        }
        .stats-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #252f3a;
        }
        .stats-table tr:hover td {
            background: #1a212b;
        }
        footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #252f3a;
            font-size: 0.95rem;
            color: #8896a8;
        }
        friend-link {
            display: block;
            padding: 16px 0 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 14px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 6px;
            border-top: 1px solid #1f2937;
            margin-top: 18px;
            font-size: 0.88rem;
            color: #6a7a8e;
        }
        .last-updated {
            display: inline-block;
            background: #1f2937;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.88rem;
            color: #aab8c9;
            margin: 10px 0 18px;
        }
        .toc {
            background: #1a212b;
            border-radius: 20px;
            padding: 22px 28px;
            margin: 24px 0 32px;
            border: 1px solid #252f3a;
        }
        .toc h3 {
            margin-top: 0;
        }
        .toc ul {
            columns: 2 220px;
            list-style: none;
            margin-left: 0;
        }
        .toc li {
            padding: 4px 0;
        }
        .toc a {
            color: #c8d2de;
        }
        .toc a:hover {
            color: #f5c542;
        }
        @media (max-width: 768px) {
            .wrapper {
                padding: 14px 14px 30px;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 18px 0 10px;
                gap: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                font-size: 1.1rem;
                padding: 8px 0;
                border-bottom: 1px solid #252f3a;
            }
            .toc ul {
                columns: 1;
            }
            .grid-cards {
                grid-template-columns: 1fr;
            }
            .stats-table {
                font-size: 0.85rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 8px 10px;
            }
            .search-box {
                max-width: 100%;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none;
            }
            nav {
                display: flex !important;
            }
        }
        ::selection {
            background: #f5c542;
            color: #0d0f14;
        }
        .highlight {
            color: #f5c542;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #0d0f14;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
