:root {
            --primary: #FF6B8B;
            --secondary: #6A5ACD;
            --accent: #20B2AA;
            --dark: #2C3E50;
            --light: #F8F9FA;
            --gray: #95A5A6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: var(--light);
            max-width: 100vw;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a2530 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo a {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            background: linear-gradient(45deg, var(--primary), #FFD166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        .my-logo a:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }
        .search-form {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            padding: 0.7rem 1.2rem;
            border: none;
            background: transparent;
            color: white;
            min-width: 220px;
        }
        .search-form button {
            background: var(--accent);
            border: none;
            color: white;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #1E9C96;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #EDF2F7;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--light);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .update-time {
            color: var(--accent);
            font-weight: 600;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #E0E6EF;
        }
        h3 {
            color: var(--dark);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.3rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .content-img:hover {
            transform: translateY(-5px);
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,107,139,0.15) 0%, rgba(106,90,205,0.15) 100%);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip {
            background-color: #E8F4FD;
            border-left: 5px solid #4DABF7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip:before {
            content: "💡 Pro Tip: ";
            font-weight: 800;
            color: var(--secondary);
        }
        .value-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .value-table th {
            background: var(--secondary);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .value-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #eee;
        }
        .value-table tr:hover {
            background-color: #f9f9ff;
        }
        .wfl-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            margin: 0 0.3rem;
        }
        .win { background: #C8F7C5; color: #2B8A3E; }
        .fair { background: #FFF3CD; color: #E67700; }
        .lose { background: #F8D7DA; color: #C92A2A; }
        .internal-links {
            background: #F8F9FF;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
        }
        .internal-links a {
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            padding: 0.5rem;
            border-radius: 6px;
        }
        .internal-links a:hover {
            background: white;
            color: var(--primary);
            padding-left: 1rem;
        }
        .internal-links i {
            color: var(--accent);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--dark);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--light);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFD700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rate-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
            margin-top: 1rem;
        }
        .rate-btn:hover {
            background: #FF5577;
            transform: translateY(-3px);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #eee;
        }
        .comment-form {
            background: #F8F9FF;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            outline: none;
        }
        .submit-comment {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
        }
        .submit-comment:hover {
            background: #5A4BC2;
            transform: translateY(-2px);
        }
        .comment {
            display: flex;
            gap: 1.2rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #eee;
        }
        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        .comment-content h4 {
            margin: 0 0 0.5rem;
            color: var(--dark);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .footer-links h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #BDC3C7;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link a {
            color: var(--accent) !important;
            font-weight: 600;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4A5A6D;
            color: #95A5A6;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form input {
                min-width: 180px;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .main-container, .site-header, .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            article {
                padding: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo a {
                font-size: 1.8rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
