* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #0d6efd;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0a58ca;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 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.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #6c63ff;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #cfd8ff;
            text-decoration: none;
        }
        .my-logo span {
            background: linear-gradient(90deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #e0e0ff;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            color: #ffd200;
            border-bottom-color: #ffd200;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
        }
        .breadcrumb-wrap {
            background: #eef1f5;
            padding: 10px 0;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            font-size: 0.9rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0d6efd;
        }
        .breadcrumb .active {
            color: #6c757d;
        }
        .hero {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "WORDLE";
            position: absolute;
            font-size: 16vw;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            white-space: nowrap;
            letter-spacing: 20px;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
            background: linear-gradient(90deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            color: #c8c8e8;
            position: relative;
            z-index: 2;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            color: #a0a0c0;
            position: relative;
            z-index: 2;
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #eef1f5;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
            color: #1a1a2e;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .sidebar-card ul li a:hover {
            background: #f0f2ff;
            text-decoration: none;
        }
        .sidebar-card ul li a i {
            color: #6c63ff;
            width: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #1a1a2e;
            border-left: 5px solid #6c63ff;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #3d3d5c;
        }
        p {
            margin-bottom: 16px;
            color: #2d2d44;
        }
        .content-card {
            background: #fff;
            border-radius: 16px;
            padding: 32px 36px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef1f5;
            margin-bottom: 28px;
        }
        .content-card img {
            border-radius: 12px;
            margin: 20px 0;
            width: 100%;
            object-fit: cover;
        }
        .highlight-box {
            background: #f0f4ff;
            border-left: 5px solid #6c63ff;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #1a1a2e;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-item {
            background: #f8f9ff;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e8e8f0;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #6c63ff;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #5a5a7a;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e0e0f0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #6c63ff;
        }
        .search-form button {
            padding: 12px 28px;
            background: linear-gradient(135deg, #6c63ff, #4a42d4);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef1f5;
            margin-top: 28px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #1a1a2e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e0e0f0;
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #6c63ff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn-submit {
            padding: 12px 32px;
            background: linear-gradient(135deg, #6c63ff, #4a42d4);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            color: #c8c8e8;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 40px;
            justify-content: center;
        }
        friend-link a {
            color: #cfd8ff;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.3s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.14);
            text-decoration: none;
            color: #ffd200;
        }
        .site-footer {
            background: #0f0c1a;
            color: #a0a0c0;
            padding: 24px 0;
            text-align: center;
            border-top: 1px solid #2a2a4a;
        }
        .site-footer p {
            margin-bottom: 4px;
            color: #a0a0c0;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #cfd8ff;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 12px;
                background: #1a1a2e;
                border-top: 1px solid #2a2a4a;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .comment-section,
            .rating-section {
                padding: 18px;
            }
        }
        .nav-menu {
            transition: all 0.3s ease;
        }
        .content-card,
        .sidebar-card,
        .comment-section,
        .rating-section {
            transition: box-shadow 0.3s;
        }
        .content-card:hover,
        .sidebar-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .btn-submit:active {
            transform: scale(0.97);
        }
        blockquote {
            background: #f8f9ff;
            border-left: 5px solid #6c63ff;
            padding: 18px 24px;
            margin: 20px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2d2d44;
        }
        blockquote footer {
            margin-top: 8px;
            font-weight: 600;
            color: #1a1a2e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 12px 16px;
            border: 1px solid #e0e0f0;
            text-align: left;
        }
        th {
            background: #f0f2ff;
            font-weight: 700;
            color: #1a1a2e;
        }
        tr:nth-child(even) {
            background: #fafbff;
        }
        .last-updated {
            display: inline-block;
            background: #eef1f5;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #5a5a7a;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
        }
