* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f9ff;
            color: #1a1a2e;
            line-height: 1.8;
            padding: 0;
            overflow-x: hidden;
        }
        a {
            color: #6C63FF;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #4a42d4;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #6C63FF 0%, #a78bfa 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(108, 99, 255, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffd93d;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 1rem;
            opacity: 0.85;
            display: block;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
            border-color: rgba(255, 255, 255, 0.3);
        }
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.25);
            border-color: #ffd93d;
            color: #fff;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e8e8ff;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #555;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #aaa;
            font-size: 1.2rem;
            margin-right: 4px;
        }
        .breadcrumb a {
            color: #6C63FF;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #333;
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .article-header {
            margin-bottom: 32px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6C63FF, #e040fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            color: #666;
            font-size: 0.95rem;
            border-bottom: 1px solid #e8e8ff;
            padding-bottom: 16px;
            margin-bottom: 24px;
        }
        .article-meta i {
            color: #6C63FF;
            margin-right: 6px;
        }
        .article-meta .last-updated {
            font-weight: 600;
            color: #333;
        }
        .hero-image-wrap {
            margin: 24px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(108, 99, 255, 0.15);
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .hero-image-wrap .img-caption {
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 8px 16px;
            font-size: 0.85rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .content-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #6C63FF;
            display: inline-block;
        }
        .content-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d2d5e;
            margin: 32px 0 12px;
        }
        .content-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #444;
            margin: 24px 0 10px;
        }
        .content-body p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c2c3e;
        }
        .content-body ul,
        .content-body ol {
            margin: 16px 0 24px 24px;
        }
        .content-body li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        .content-body strong {
            color: #1a1a2e;
            font-weight: 700;
        }
        .content-body .highlight-box {
            background: linear-gradient(135deg, #f0f0ff, #f8f4ff);
            border-left: 4px solid #6C63FF;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 24px 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-body .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .content-body .player-quote {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 24px 0;
            border: 1px solid #e8e8ff;
            font-style: italic;
            position: relative;
        }
        .content-body .player-quote::before {
            content: "“";
            font-size: 4rem;
            color: #6C63FF;
            opacity: 0.3;
            position: absolute;
            top: -8px;
            left: 12px;
            font-family: Georgia, serif;
        }
        .content-body .player-quote .quote-author {
            display: block;
            margin-top: 12px;
            font-style: normal;
            font-weight: 600;
            color: #6C63FF;
        }
        .content-body .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.98rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .content-body .data-table th {
            background: #6C63FF;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .content-body .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e8e8ff;
            background: #fff;
        }
        .content-body .data-table tr:nth-child(even) td {
            background: #f8f8ff;
        }
        .content-body .data-table tr:hover td {
            background: #f0eeff;
        }
        .search-section {
            background: linear-gradient(135deg, #f0f0ff, #e8e4ff);
            border-radius: 20px;
            padding: 32px 36px;
            margin: 48px 0;
            box-shadow: 0 4px 20px rgba(108, 99, 255, 0.08);
        }
        .search-section h3 {
            margin-top: 0;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s ease;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #6C63FF;
            box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
        }
        .search-form button {
            background: #6C63FF;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #4a42d4;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(108, 99, 255, 0.3);
        }
        .review-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 48px 0;
        }
        .review-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0eeff;
        }
        .review-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a1a2e;
        }
        .review-card form {
            margin-top: 16px;
        }
        .review-card form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0f0;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .review-card form textarea:focus {
            border-color: #6C63FF;
        }
        .review-card form input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0f0;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            margin: 8px 0;
            transition: border-color 0.2s;
        }
        .review-card form input[type="text"]:focus {
            border-color: #6C63FF;
        }
        .review-card form .btn-submit {
            background: #6C63FF;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .review-card form .btn-submit:hover {
            background: #4a42d4;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(108, 99, 255, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            margin: 8px 0 12px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        .friend-links-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 40px 0 20px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8e8ff;
        }
        .friend-links-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .friend-links-section friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            margin-top: 12px;
        }
        .friend-links-section friend-link a {
            color: #6C63FF;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .friend-links-section friend-link a:hover {
            border-bottom-color: #6C63FF;
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 32px 0 24px;
            margin-top: 40px;
            border-top: 4px solid #6C63FF;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .site-footer .footer-copy {
            font-size: 0.9rem;
            color: #999;
        }
        .site-footer .footer-copy strong {
            color: #ddd;
        }
        .site-footer a {
            color: #a78bfa;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-links {
            display: flex;
            gap: 16px 24px;
            flex-wrap: wrap;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            .review-section {
                grid-template-columns: 1fr;
            }
            .content-body h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.1);
                padding: 12px 16px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
                width: 100%;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .search-section {
                padding: 20px 18px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
                padding: 12px 16px;
            }
            .search-form button {
                padding: 12px 20px;
            }
            .review-card {
                padding: 20px 18px;
            }
            .hero-image-wrap .img-caption {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            .content-body .data-table {
                font-size: 0.85rem;
            }
            .content-body .data-table th,
            .content-body .data-table td {
                padding: 8px 10px;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.5rem;
            }
            .content-body p {
                font-size: 0.98rem;
            }
            .content-body h2 {
                font-size: 1.4rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .article-meta {
                font-size: 0.82rem;
                gap: 8px 16px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .star-rating label i {
                font-size: 1.4rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        friend-link {
            display: inline;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 0;
        }
