* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px 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;
            text-decoration: none;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffd200;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #ffd200;
            color: #ffd200;
        }
        nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            position: relative;
        }
        nav a:hover,
        nav a.active {
            color: #ffd200;
            border-bottom-color: #ffd200;
        }
        .breadcrumb {
            background: #e8ecf1;
            padding: 10px 0;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #302b63;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #888;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #0f0c29, #302b63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #1a1a2e;
            border-left: 5px solid #f7971e;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #302b63;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #444;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d3f;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            font-size: 0.9rem;
            color: #777;
            margin: 8px 0 24px;
            padding: 12px 0;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }
        .meta-info i {
            margin-right: 6px;
            color: #f7971e;
        }
        .featured-image {
            width: 100%;
            border-radius: 16px;
            margin: 24px 0 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            display: block;
            max-height: 500px;
            object-fit: cover;
            background: #ddd;
        }
        .image-caption {
            font-size: 0.85rem;
            color: #888;
            margin-top: -20px;
            margin-bottom: 30px;
            text-align: center;
            font-style: italic;
        }
        .highlight {
            background: #fff8e1;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #e65100;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: 0.25s;
            border: 1px solid #f0f0f0;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #f7971e;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #1a1a2e;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247, 151, 30, 0.4);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #302b63;
            color: #302b63;
        }
        .btn-outline:hover {
            background: #302b63;
            color: #fff;
        }
        .player-quote {
            background: #f0edff;
            border-left: 4px solid #302b63;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-style: italic;
            position: relative;
        }
        .player-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: #302b63;
            opacity: 0.2;
            position: absolute;
            top: -6px;
            left: 12px;
            font-family: Georgia, serif;
        }
        .player-quote strong {
            font-style: normal;
            display: block;
            margin-top: 8px;
            color: #1a1a2e;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .stats-table th {
            background: #302b63;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .stats-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }
        .stats-table tr:hover td {
            background: #f9f7ff;
        }
        .stats-table .stat-high {
            font-weight: 700;
            color: #e65100;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f7971e;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            color: #1a1a2e;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247, 151, 30, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
            margin-bottom: 14px;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #f7971e;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .btn {
            width: 100%;
            text-align: center;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin-bottom: 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #ffb300;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            color: #302b63;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dotted #ccc;
            transition: 0.2s;
        }
        .link-list li a:hover {
            color: #f7971e;
            border-bottom-color: #f7971e;
        }
        footer {
            background: #0f0c29;
            color: rgba(255, 255, 255, 0.8);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            footer .container {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #ffd200;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            padding: 4px 0;
            transition: 0.2s;
        }
        footer a:hover {
            color: #ffd200;
        }
        friend-link {
            display: block;
            margin-top: 10px;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            padding: 4px 0;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 8px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                font-size: 1.05rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 6px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .feedback-card {
                padding: 18px;
            }
            .search-section {
                padding: 20px;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        html {
            scroll-padding-top: 80px;
        }
        .toc {
            background: #fff;
            padding: 20px 24px;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 32px;
            border: 1px solid #f0f0f0;
        }
        .toc a {
            color: #302b63;
            text-decoration: none;
            display: block;
            padding: 4px 0;
            font-weight: 500;
        }
        .toc a:hover {
            color: #f7971e;
        }
        .toc .toc-h2 {
            font-weight: 700;
            font-size: 1.05rem;
        }
        .toc .toc-h3 {
            padding-left: 20px;
            font-size: 0.95rem;
        }
        .toc .toc-h4 {
            padding-left: 40px;
            font-size: 0.9rem;
            color: #666;
        }
        .tag {
            display: inline-block;
            background: #e8ecf1;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #555;
            margin-right: 6px;
            margin-bottom: 6px;
        }
        .tag i {
            margin-right: 4px;
            color: #f7971e;
        }
        .emoji-big {
            font-size: 2rem;
            line-height: 1;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .gallery-grid img {
            width: 100%;
            border-radius: 12px;
            height: 180px;
            object-fit: cover;
            background: #ddd;
            transition: 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
