        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #e35f21;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b04416;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .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;
            color: #f5a623;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffb83d;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #e35f21;
        }
        .my-logo span {
            font-weight: 300;
            color: #b0c4de;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #e0e0e0;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            background: rgba(245, 166, 35, 0.2);
            color: #f5a623;
            text-decoration: none;
        }
        .breadcrumb {
            background: #eef0f5;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce0e8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb .current {
            color: #e35f21;
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a2e;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #e35f21;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #16213e;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2d2d44;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #1a1a2e;
            background: #f0f4fa;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #f5a623;
        }
        .highlight-box {
            background: #fff8e7;
            border: 1px solid #f5d78e;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #b04416;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #eef0f5;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #555;
            background: #fff;
            border-top: 1px solid #e0e0e0;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 2.5rem 0;
            border: 1px solid #e8ecf2;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce0e8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f5a623;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #e35f21;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #b04416;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8ecf2;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card input,
        .feedback-card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce0e8;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #f5a623;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 2rem;
            background: #1a1a2e;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .feedback-card button:hover {
            background: #16213e;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #dce0e8;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8ecf2;
            margin-bottom: 1.8rem;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #f5a623;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f2f6;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .sidebar-link-list a::before {
            content: "🏀";
            font-size: 0.9rem;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f5a623;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #b0c4de;
        }
        .site-footer a:hover {
            color: #f5a623;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.2rem 0;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2c3e50;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8899aa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1a2e;
                padding: 0.8rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .sidebar-card {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            .lead {
                font-size: 1rem;
                padding: 1rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #eef0f5;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #667;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            border: 1px solid #dce0e8;
            text-align: left;
        }
        th {
            background: #1a1a2e;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8f9fc;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
