* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #d4145a;
            --primary-dark: #a10e44;
            --secondary: #fbb03b;
            --accent: #1a1a2e;
            --bg: #f9f5f0;
            --card-bg: #ffffff;
            --text: #2d2d2d;
            --text-light: #6b6b6b;
            --border: #e8e0d8;
            --gold: #d4a017;
            --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--accent) 0%, #16213e 100%);
            padding: 0 1.2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--secondary), #f7d875);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            list-style: none;
        }
        .nav-menu a {
            color: #f0e6d3;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            transition: 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--secondary);
        }
        .breadcrumb-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb-wrap a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb-wrap a:hover {
            text-decoration: underline;
        }
        .breadcrumb-wrap span {
            color: var(--text-light);
        }
        .page-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.2rem 1.2rem 2.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 85px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--accent);
            border-left: 4px solid var(--primary);
            padding-left: 10px;
        }
        .sidebar-link-list {
            list-style: none;
        }
        .sidebar-link-list li+li {
            margin-top: 0.6rem;
        }
        .sidebar-link-list a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .sidebar-link-list a:hover {
            background: #f5ede6;
            color: var(--primary);
        }
        .sidebar-link-list i {
            color: var(--gold);
            font-size: 0.8rem;
            width: 18px;
            text-align: center;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--accent);
            margin: 2.4rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin: 1.6rem 0 0.6rem 0;
        }
        h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin: 1.2rem 0 0.4rem 0;
        }
        p {
            margin-bottom: 1rem;
        }
        .meta-line {
            color: var(--text-light);
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.2rem;
            align-items: center;
        }
        .meta-line i {
            margin-right: 4px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff8f0, #fff3e6);
            border-left: 5px solid var(--gold);
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .player-quote {
            background: var(--accent);
            color: #f0e6d3;
            padding: 1.6rem 2rem;
            border-radius: var(--radius);
            margin: 1.6rem 0;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 4rem;
            position: absolute;
            top: -8px;
            left: 14px;
            color: var(--secondary);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: var(--secondary);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th {
            background: var(--accent);
            color: #fff;
            padding: 10px 14px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #faf5f0;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(212, 20, 90, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 1.6rem 0;
            box-shadow: var(--shadow);
            display: block;
            max-width: 100%;
            height: auto;
        }
        .form-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 1.6rem 0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 4px;
            color: var(--text);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: var(--font);
            transition: 0.2s;
            background: #fefcfb;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 20, 90, 0.12);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating i.active {
            color: var(--gold);
        }
        .star-rating i:hover {
            color: var(--gold);
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--accent);
            color: #ccc;
            padding: 2.5rem 1.2rem 1.8rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            color: #bbb;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: var(--secondary);
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner li+li {
            margin-top: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
        }
        friend-link a {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #999;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
        }
        @media (max-width: 1024px) {
            .page-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                height: 56px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                background: var(--accent);
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                padding: 1rem 1.2rem;
                gap: 0.4rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 12px;
                width: 100%;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .page-wrap {
                padding: 0.8rem 0.8rem 1.8rem;
                gap: 1.5rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .form-card {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 6px 8px;
            }
            .breadcrumb-wrap {
                padding: 0.5rem 0.8rem;
                font-size: 0.78rem;
            }
            .meta-line {
                font-size: 0.8rem;
                gap: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.15rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .btn {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(212, 20, 90, 0.3);
            transition: 0.25s;
            display: none;
            z-index: 99;
        }
        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        .scroll-top.visible {
            display: block;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tag {
            display: inline-block;
            background: #f0e6dc;
            color: var(--accent);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .divider {
            border: none;
            border-top: 2px dashed var(--border);
            margin: 2rem 0;
        }
