* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #faf6f0;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #f5e6c8;
            padding: 18px 0;
            border-bottom: 4px solid #c9a227;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6c8;
            text-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
            transition: transform 0.2s;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #f5d78a;
            text-decoration: none;
        }
        .my-logo span {
            color: #c9a227;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            color: #f5e6c8;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #e8dcc8;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: rgba(201, 162, 39, 0.2);
            border-color: #c9a227;
            color: #f5d78a;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f0ebe3;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #a09080;
        }
        .breadcrumb a {
            color: #6a5c4a;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            border-left: 6px solid #c9a227;
            padding-left: 24px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 56px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e8dcc8;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a2a3e;
            margin-top: 36px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3a3a4e;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2c2c3a;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: #6a5c4a;
            margin-bottom: 30px;
            padding: 12px 0;
            border-top: 1px solid #ddd6cc;
            border-bottom: 1px solid #ddd6cc;
        }
        .meta-info i {
            margin-right: 6px;
            color: #c9a227;
        }
        .featured-image {
            margin: 30px 0 40px;
            border-radius: 16px;
            overflow: hidden;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #6a5c4a;
            margin-top: 10px;
            font-style: italic;
        }
        .card-highlight {
            background: #fcf9f4;
            border-left: 6px solid #c9a227;
            padding: 20px 28px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .card-highlight p:last-child {
            margin-bottom: 0;
        }
        .tip-box {
            background: #eef5eb;
            border-radius: 16px;
            padding: 20px 28px;
            margin: 24px 0;
            border: 1px solid #cde0d0;
        }
        .tip-box i {
            color: #2d7a3a;
            margin-right: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            background: #fffcf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th {
            background: #1a1a2e;
            color: #f5e6c8;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8e0d6;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f4ee;
        }
        ul,
        ol {
            margin: 16px 0 20px 24px;
            color: #2c2c3a;
        }
        li {
            margin-bottom: 8px;
        }
        .btn {
            display: inline-block;
            background: #c9a227;
            color: #1a1a2e;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 40px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #b8921f;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
            text-decoration: none;
            color: #1a1a2e;
        }
        .search-section {
            background: #f0ebe3;
            border-radius: 20px;
            padding: 32px 36px;
            margin: 48px 0;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fffcf7;
        }
        .search-form input[type="text"]:focus {
            border-color: #c9a227;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 48px 0;
        }
        @media (max-width:780px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fffcf7;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e8e0d6;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 18px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #faf6f0;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c9a227;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd6cc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #c9a227;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #e8dcc8;
            padding: 32px 0;
            margin-top: 40px;
            border-top: 4px solid #c9a227;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            align-items: center;
        }
        friend-link a {
            color: #f5d78a;
            font-weight: 500;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #fff2d0;
            text-decoration: underline;
        }
        .footer-copyright {
            background: #0f0f1a;
            color: #a09080;
            text-align: center;
            padding: 22px 20px;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a3e;
        }
        .footer-copyright a {
            color: #c9a227;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding-top: 16px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
                padding-left: 16px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
        }
        .highlight-keyword {
            font-weight: 700;
            color: #b8860b;
        }
        .player-quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #3a3a4e;
            background: #f8f4ee;
            padding: 20px 28px;
            border-radius: 16px;
            border-left: 6px solid #c9a227;
            margin: 24px 0;
        }
        .player-quote cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: #1a1a2e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-item {
            background: #fffcf7;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e0d6;
        }
        .stat-item .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #c9a227;
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #6a5c4a;
        }
        .exclusive-badge {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-right: 8px;
        }
