        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: #1e1e2a;
            background: #f6f7f9;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #14141f;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.45rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #14141f;
            color: #f0f0f0;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c040, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(184, 134, 11, 0.2);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #b8860b;
            color: #14141f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b8860b33;
            color: #f0c040;
        }
        .breadcrumb {
            background: #e8e9ed;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            border-radius: 0 0 8px 8px;
            margin-bottom: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a::after {
            content: " / ";
            margin: 0 0.3rem;
            color: #999;
        }
        .breadcrumb span {
            color: #222;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
            color: #f0f0f0;
            padding: 2.5rem 1.2rem;
            border-radius: 12px;
            margin: 1.5rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .hero-text {
            flex: 1 1 300px;
        }
        .hero-text h1 {
            color: #f0c040;
            font-size: 2.2rem;
            margin-top: 0;
            border: none;
        }
        .hero-text p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        .hero-img {
            flex: 0 0 320px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .search-wrap {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
            outline: none;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #d4a017;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            padding: 2.2rem 2.4rem;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            padding: 1.8rem 1.6rem;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #eee;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
        }
        .sidebar a {
            display: block;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.15s;
        }
        .sidebar a:hover {
            background: #f5f0e6;
            text-decoration: none;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s, box-shadow 0.25s;
            background: #fafafa;
        }
        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
        }
        .gallery-item img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .gallery-item .caption {
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
        }
        .highlight-box {
            background: #f5f0e6;
            border-left: 5px solid #b8860b;
            padding: 1.4rem 1.8rem;
            border-radius: 0 10px 10px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .player-quote {
            font-style: italic;
            background: #f0f4ff;
            border-radius: 12px;
            padding: 1.4rem 1.8rem;
            margin: 1.6rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3.2rem;
            color: #b8860b;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .player-quote strong {
            color: #b8860b;
        }
        .rating-area,
        .comment-area {
            background: #fafafc;
            border-radius: 12px;
            padding: 1.6rem 1.8rem;
            margin: 2.2rem 0;
            border: 1px solid #e8e8ee;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.3rem;
            justify-content: flex-end;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .rating-form button,
        .comment-form button {
            background: #14141f;
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 0.6rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #b8860b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b8860b;
            outline: none;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b8860b;
            outline: none;
        }
        .site-footer {
            background: #14141f;
            color: #bbb;
            padding: 2.4rem 1.2rem 1.2rem;
            margin-top: 3rem;
            border-radius: 16px 16px 0 0;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            padding: 1.2rem 1.6rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-inner friend-link a {
            color: #d4a017;
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .footer-inner friend-link a:hover {
            color: #f0c040;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 1.2rem;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #888;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
                padding: 1.6rem;
            }
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 2rem 1.2rem;
            }
            .hero-img {
                flex: 0 0 auto;
                width: 100%;
                max-width: 400px;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1e1e2e;
                padding: 0.8rem 0.4rem;
                border-radius: 0 0 10px 10px;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 6px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .main-content {
                padding: 1.2rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.95rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (min-width: 641px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #777;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .btn-icon {
            background: none;
            border: none;
            color: #b8860b;
            cursor: pointer;
            font-size: 1rem;
        }
        .fa-chevron-down {
            transition: transform 0.2s;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background: #14141f;
            color: #f0c040;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f8fc;
        }
        .toc {
            background: #f5f0e6;
            padding: 1.2rem 1.6rem;
            border-radius: 10px;
            margin: 1.4rem 0;
        }
        .toc a {
            color: #333;
            font-weight: 500;
        }
        .toc a:hover {
            color: #b8860b;
        }
        .toc ul {
            list-style: none;
            padding-left: 0.5rem;
        }
        .toc li {
            margin-bottom: 0.3rem;
        }
        .tag {
            display: inline-block;
            background: #e8e9ed;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #444;
            margin-right: 0.3rem;
        }
