        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b3e4ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0f6fc;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #e8a838;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 5px solid #e8a838;
            padding-left: 0.8rem;
            margin-top: 2.2rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #d4e2f0;
        }
        h4 {
            font-size: 1.1rem;
            color: #b8cbd9;
        }
        p {
            margin: 0.8rem 0;
            font-size: 1rem;
        }
        strong,
        b {
            color: #f5d98e;
            font-weight: 700;
        }
        em {
            color: #aad0f5;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3548;
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #131a24, #1a2535);
            border-bottom: 2px solid #2a3a4e;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d98e, #e8a838);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(232, 168, 56, 0.2);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #e8a838;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            -webkit-text-fill-color: #8a9bb0;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #c8d6e5;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .nav-bar a:hover {
            color: #f5d98e;
            border-bottom-color: #e8a838;
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
            color: #e8a838;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f6fc;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #111a24;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            border: 1px solid #1f2d3d;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb span {
            color: #8a9bb0;
        }
        .breadcrumb .current {
            color: #f5d98e;
        }
        .search-section {
            background: #111b27;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #1f2f42;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a3f55;
            background: #0a121c;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #e8a838;
            box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #e8a838, #d4892a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 168, 56, 0.3);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #111b27;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #1f2f42;
        }
        .sidebar {
            background: #111b27;
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #1f2f42;
            align-self: start;
            position: sticky;
            top: 5.5rem;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            border-bottom: 2px solid #e8a838;
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1a2738;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
        }
        .sidebar ul li a i {
            color: #e8a838;
            font-size: 0.75rem;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #0a121c;
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8a9bb0;
            padding: 0.6rem 0 0.2rem;
            font-style: italic;
        }
        .event-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            background: #0d1622;
            border-radius: 12px;
            overflow: hidden;
        }
        .event-table th {
            background: #1a2a3e;
            color: #f5d98e;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .event-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #1a2738;
        }
        .event-table tr:last-child td {
            border-bottom: none;
        }
        .event-table tr:hover td {
            background: #15202f;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0 1rem;
        }
        .comment-box,
        .score-box {
            background: #0d1622;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #1a2a3e;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box h3 i,
        .score-box h3 i {
            color: #e8a838;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #2a3f55;
            background: #0a121c;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #e8a838;
            box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.1);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 0.8rem;
            border-radius: 8px;
            border: 1px solid #2a3f55;
            background: #0a121c;
            color: #e8edf5;
            font-size: 0.95rem;
            margin: 0.5rem 0;
        }
        .comment-form input[type="text"]:focus {
            outline: none;
            border-color: #e8a838;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #e8a838, #d4892a);
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 168, 56, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #2a3f55;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a838;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #0d1622;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0;
            border: 1px solid #1a2a3e;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f5d98e;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            margin: 0.8rem 0 0;
        }
        friend-link ul li a {
            color: #7ec8e3;
            font-size: 0.92rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        friend-link ul li a:hover {
            color: #b3e4ff;
        }
        friend-link ul li a::before {
            content: "🔗";
            font-size: 0.75rem;
        }
        .site-footer {
            background: #0a111c;
            border-top: 2px solid #1a2a3e;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: #8a9bb0;
        }
        .footer-inner .copyright {
            font-weight: 400;
        }
        .footer-inner .copyright strong {
            color: #e8a838;
        }
        .footer-links {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #7ec8e3;
            font-size: 0.88rem;
        }
        @media (max-width: 900px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.2rem;
                padding: 0.8rem 0 0.2rem;
                border-top: 1px solid #1a2a3e;
                margin-top: 0.5rem;
            }
            .nav-bar a {
                padding: 0.5rem 0.8rem;
                border-radius: 6px;
                border-bottom: none;
            }
            .nav-bar a:hover {
                background: #1a2738;
                border-bottom: none;
            }
            .nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .nav-toggle:checked~.hamburger {
                transform: rotate(90deg);
            }
            .main-content {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .event-table {
                font-size: 0.78rem;
            }
            .event-table th,
            .event-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
            .sidebar {
                padding: 1rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .event-table {
                font-size: 0.7rem;
            }
            .event-table th,
            .event-table td {
                padding: 0.4rem 0.4rem;
            }
            .comment-box,
            .score-box {
                padding: 1rem;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .highlight {
            background: linear-gradient(120deg, rgba(232, 168, 56, 0.12), rgba(232, 168, 56, 0.04));
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
        }
        .badge {
            display: inline-block;
            background: #e8a838;
            color: #0b0e14;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #0d1622;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.82rem;
            color: #8a9bb0;
            border: 1px solid #1a2a3e;
            margin: 0.5rem 0 1rem;
        }
        .last-updated i {
            color: #e8a838;
        }
        .back-to-top {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #e8a838;
            color: #0b0e14;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
            transition: transform 0.2s, opacity 0.3s;
            opacity: 0.8;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            opacity: 1;
            text-decoration: none;
        }
