* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #ffd966;
            text-shadow: 0 0 8px rgba(240, 192, 64, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-bottom: 3px solid #d4af37;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: 0.3s;
        }
        .nav-list li a:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: 0.3s;
        }
        .hamburger:hover {
            background: rgba(212, 175, 55, 0.15);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb span {
            color: #999;
        }
        .breadcrumb a {
            color: #d4af37;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c040, #ffd966, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #bbb;
            max-width: 750px;
            margin: 0 auto 16px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #888;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            color: #d4af37;
            margin-right: 6px;
        }
        .search-bar {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 60px;
            padding: 4px 4px 4px 20px;
            display: flex;
            align-items: center;
            max-width: 500px;
            margin: 20px auto 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: 0.3s;
        }
        .search-bar:focus-within {
            border-color: #d4af37;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .search-bar input {
            flex: 1;
            background: none;
            border: none;
            padding: 14px 8px;
            font-size: 1rem;
            color: #fff;
            outline: none;
        }
        .search-bar input::placeholder {
            color: #777;
        }
        .search-bar button {
            background: #d4af37;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            color: #0d0d1a;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .search-bar button:hover {
            background: #f0c040;
            transform: scale(1.03);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 50px;
        }
        @media(max-width:960px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        article h2 {
            font-size: 2rem;
            color: #f0c040;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        }
        article h3 {
            font-size: 1.5rem;
            color: #ffd966;
            margin: 28px 0 12px;
        }
        article h4 {
            font-size: 1.2rem;
            color: #e8c55a;
            margin: 20px 0 10px;
        }
        article p {
            margin-bottom: 18px;
            color: #d0d0e0;
            font-size: 1.05rem;
        }
        article p b,
        article p strong {
            color: #fff;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1a2e;
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(0, 0, 0, 0.3);
        }
        .highlight-box {
            background: rgba(212, 175, 55, 0.06);
            border-left: 4px solid #d4af37;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .link-list-inline {
            display: inline;
            flex-wrap: wrap;
            gap: 4px 12px;
            list-style: none;
        }
        .link-list-inline li {
            display: inline;
        }
        .link-list-inline li::after {
            content: " · ";
            color: #555;
        }
        .link-list-inline li:last-child::after {
            content: "";
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar h3 {
            color: #d4af37;
            font-size: 1.3rem;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .sidebar ul li a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateX(4px);
        }
        .sidebar ul li a i {
            color: #d4af37;
            width: 20px;
            text-align: center;
        }
        .feedback-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 30px 28px;
            margin: 40px 0;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .feedback-section h3 {
            color: #f0c040;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media(max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-form label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #ccc;
            font-size: 0.95rem;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 1rem;
            transition: 0.3s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #d4af37;
            outline: none;
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
            margin-bottom: 16px;
        }
        .feedback-form .star-rating input {
            display: none;
        }
        .feedback-form .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: 0.3s;
        }
        .feedback-form .star-rating label:hover,
        .feedback-form .star-rating label:hover~label,
        .feedback-form .star-rating input:checked~label {
            color: #f0c040;
            text-shadow: 0 0 12px rgba(240, 192, 64, 0.3);
        }
        .feedback-form .btn-submit {
            background: #d4af37;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            color: #0d0d1a;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
        }
        .feedback-form .btn-submit:hover {
            background: #f0c040;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 24px 20px;
            margin: 30px 0 10px;
            border: 1px solid rgba(212, 175, 55, 0.08);
        }
        friend-link h3 {
            color: #d4af37;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link ul li a {
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: 0.3s;
        }
        friend-link ul li a:hover {
            border-bottom-color: #d4af37;
        }
        footer {
            background: #0a0a16;
            border-top: 2px solid rgba(212, 175, 55, 0.15);
            padding: 30px 0 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        footer .copyright {
            margin-top: 12px;
            color: #666;
            font-size: 0.85rem;
        }
        footer .copyright i {
            color: #d4af37;
        }
        @media(max-width:768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 12px 0;
                border-radius: 12px;
                margin-top: 10px;
                border: 1px solid rgba(212, 175, 55, 0.15);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-bar {
                max-width: 100%;
            }
            .sidebar {
                position: static;
            }
            .breadcrumb .container {
                font-size: 0.8rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .feedback-section {
                padding: 20px 16px;
            }
            .feedback-form .star-rating label {
                font-size: 1.6rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }
        table th {
            background: rgba(212, 175, 55, 0.12);
            color: #f0c040;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #ccc;
        }
        table tr:hover td {
            background: rgba(212, 175, 55, 0.03);
        }
        .tag {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #d4af37;
            margin: 2px 4px 2px 0;
        }
