* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e1e2a;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #c97b2d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a35f1f;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #e6b13e;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5d68a;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #fae3a8;
        }
        .my-logo span {
            color: #e6b13e;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: #f5d68a;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e8e0d0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: rgba(230, 177, 62, 0.2);
            color: #f5d68a;
        }
        .nav-active {
            background: rgba(230, 177, 62, 0.18);
            color: #f5d68a;
        }
        .breadcrumb {
            background: #efece4;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b39b7a;
        }
        .breadcrumb a {
            color: #7a6348;
        }
        .breadcrumb span {
            color: #3f3a4a;
            font-weight: 500;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .main-content h1 {
            font-size: 36px;
            font-weight: 800;
            color: #0f3460;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .main-content .meta {
            color: #6b5e4e;
            font-size: 14px;
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            border-bottom: 1px solid #e2d9cc;
            padding-bottom: 16px;
        }
        .main-content .meta i {
            margin-right: 6px;
            color: #c97b2d;
        }
        .main-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #16213e;
            margin: 42px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 3px solid #e6b13e;
        }
        .main-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: #1a2a4a;
            margin: 32px 0 12px 0;
        }
        .main-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e5a;
            margin: 24px 0 10px 0;
        }
        .main-content p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #2b2b38;
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 22px 30px;
        }
        .main-content li {
            margin-bottom: 8px;
            font-size: 16px;
        }
        .main-content .highlight-box {
            background: #f0ebe2;
            border-left: 5px solid #e6b13e;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
        }
        .main-content .highlight-box strong {
            color: #a35f1f;
        }
        .main-content .feature-img {
            margin: 28px 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae5dc;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0f3460;
            margin-bottom: 18px;
            border-bottom: 2px solid #e6b13e;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: block;
            padding: 8px 12px;
            background: #f8f4ee;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar a:hover {
            background: #efe8dd;
            border-left-color: #e6b13e;
            transform: translateX(4px);
        }
        .search-box {
            background: #fff;
            border-radius: 50px;
            border: 2px solid #ddd6c8;
            display: flex;
            overflow: hidden;
            margin: 20px 0 30px;
            transition: border-color 0.2s;
        }
        .search-box:focus-within {
            border-color: #e6b13e;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            outline: none;
            font-size: 16px;
            background: transparent;
            color: #1e1e2a;
        }
        .search-box input::placeholder {
            color: #a3927a;
        }
        .search-box button {
            background: #e6b13e;
            border: none;
            padding: 0 24px;
            color: #1a1a2e;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #d49f2e;
        }
        .comment-section,
        .score-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            margin-top: 36px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eae5dc;
        }
        .comment-section h3,
        .score-section h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0f3460;
            margin-bottom: 18px;
            border-bottom: 2px solid #e6b13e;
            padding-bottom: 10px;
        }
        .comment-section textarea,
        .score-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd6c8;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 90px;
            transition: border-color 0.2s;
            background: #fcfaf7;
        }
        .comment-section textarea:focus,
        .score-section textarea:focus {
            border-color: #e6b13e;
            outline: none;
        }
        .comment-section input,
        .score-section input {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #ddd6c8;
            border-radius: 12px;
            font-size: 15px;
            margin: 10px 0;
            background: #fcfaf7;
            transition: border-color 0.2s;
        }
        .comment-section input:focus,
        .score-section input:focus {
            border-color: #e6b13e;
            outline: none;
        }
        .comment-section .btn,
        .score-section .btn {
            background: #0f3460;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-section .btn:hover,
        .score-section .btn:hover {
            background: #16213e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(15, 52, 96, 0.3);
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 28px;
            color: #ddc8a8;
            cursor: pointer;
            margin: 10px 0 14px;
        }
        .score-stars .star {
            transition: color 0.2s, transform 0.15s;
        }
        .score-stars .star:hover,
        .score-stars .star.active {
            color: #e6b13e;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            border-top: 1px solid #ddd6c8;
            margin-top: 30px;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #0f3460;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #efece4;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #e6b13e;
            color: #1a1a2e;
        }
        footer {
            background: #1a1a2e;
            color: #c8c0b0;
            padding: 30px 0 24px;
            margin-top: 40px;
            border-top: 3px solid #e6b13e;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        footer .copyright {
            font-size: 14px;
            color: #a89a86;
        }
        footer .copyright strong {
            color: #e6b13e;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 14px;
                gap: 4px;
                background: rgba(26, 26, 46, 0.95);
                padding: 12px 8px;
                border-radius: 16px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 18px;
                font-size: 16px;
                border-radius: 10px;
            }
            .main-content h1 {
                font-size: 26px;
            }
            .main-content h2 {
                font-size: 22px;
            }
            .main-content h3 {
                font-size: 18px;
            }
            .my-logo {
                font-size: 22px;
            }
            .sidebar {
                position: static;
            }
            .page-grid {
                padding: 20px 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .main-content h1 {
                font-size: 22px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .comment-section,
            .score-section {
                padding: 18px 16px;
            }
            .score-stars {
                font-size: 24px;
            }
        }
        .text-glow {
            color: #e6b13e;
        }
        .badge {
            display: inline-block;
            background: #e6b13e;
            color: #1a1a2e;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }
        .table-wrap th {
            background: #0f3460;
            color: #f5d68a;
            padding: 12px 16px;
            text-align: left;
        }
        .table-wrap td {
            padding: 10px 16px;
            border-bottom: 1px solid #e2d9cc;
        }
        .table-wrap tr:hover td {
            background: #f8f4ee;
        }
        .author-box {
            display: flex;
            gap: 18px;
            align-items: center;
            background: #f0ebe2;
            padding: 18px 22px;
            border-radius: 16px;
            margin: 28px 0;
        }
        .author-box .avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #c97b2d;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            flex-shrink: 0;
        }
        .author-box .info strong {
            font-size: 17px;
            color: #0f3460;
        }
        .author-box .info p {
            margin: 4px 0 0;
            font-size: 14px;
            color: #5a4e3e;
        }
