
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #f2f6f9;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            padding: 2rem 1rem;
        }
        .card {
            max-width: 700px;
            width: 100%;
            background: white;
            border-radius: 36px 36px 30px 30px;
            box-shadow: 0 15px 30px rgba(0,20,30,0.1);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }
        /* 头部 */
        .header {
            background: #fdd385;
            background: linear-gradient(125deg, #f8c471, #f5b342);
            padding: 2rem 2rem 1.8rem 2rem;
            color: #2d2418;
            text-align: center;
        }
        .header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-shadow: 2px 2px 0 #ffe6a6;
            margin-bottom: 0.2rem;
        }
        .header p {
            font-size: 1.2rem;
            font-weight: 400;
            background: rgba(0,0,0,0.04);
            display: inline-block;
            padding: 0.2rem 1.5rem;
            border-radius: 60px;
            backdrop-filter: blur(2px);
        }
        /* 视频列表 */
        .video-list {
            padding: 1.8rem 1.8rem 2.2rem;
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }
        /* 每个搞笑视频卡片 */
        .video-item {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.4rem 1.6rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 0 0 1px #eaeef2;
            transition: all 0.2s;
            border-left: 10px solid #f8c471;
        }
        .video-item:hover {
            box-shadow: 0 12px 20px -12px #b67b2e, 0 0 0 1px #f5b342;
        }

        .video-title {
            font-size: 1.9rem;
            font-weight: 650;
            color: #2b2b2b;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
        }
        .video-title span {
            background: #ffedd4;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            color: #7a5300;
            border: 1px solid #f5cba0;
        }

        /* 双链接区域 — 简单明了 链接1 链接2 */
        .link-duo {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px 25px;
            margin-top: 8px;
        }
        .link-simple {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f1f7fd;
            border: 1px solid #cfddee;
            padding: 0.8rem 1.6rem;
            border-radius: 60px;
            font-size: 1.2rem;
            font-weight: 500;
            color: #1f3a4c;
            text-decoration: none;
            transition: 0.15s;
            min-width: 130px;
            justify-content: center;
        }
        .link-simple:hover {
            background: #fee7b6;
            border-color: #f0b345;
            color: #2f2a1f;
            transform: scale(1.02);
            box-shadow: 0 6px 12px #f0b34530;
        }
        /* 链接里的数字标记 */
        .link-simple i {
            font-style: normal;
            background: #2c4b63;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }
        .link-simple:hover i {
            background: #c17900;
        }

        /* 第二个链接稍微变个颜色 */
        .link-simple.two i {
            background: #b6572a;
        }
        .link-simple.two:hover {
            background: #ffdec2;
        }

        /* 脚注 */
        .footer {
            text-align: center;
            padding: 1.2rem;
            background: #f9f3e9;
            color: #5e5a4f;
            font-size: 0.95rem;
            border-top: 2px dashed #f5cd94;
        }

        @media (max-width: 450px) {
            .header h1 { font-size: 2.2rem; }
            .video-title { font-size: 1.6rem; }
            .link-simple { width: 100%; justify-content: center; }
        }