File size: 1,790 Bytes
9d527ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<br/>

# HardcoreLogic: Challenging Large Reasoning Models with Long-tail Logic Puzzle Games

<div style="text-align: center; margin-top: 20px; margin-bottom: 10px;">
  <a href="#" class="btn-glass btn-paper">📄 Paper</a>
  <a href="https://github.com/ljcleo/hardcore-logic" class="btn-glass btn-github">💻 GitHub</a>
  <a href="https://huggingface.co/datasets/xhWu-fd/HardcoreLogic" class="btn-glass btn-dataset">🤗 Dataset</a>
</div>

<div style="text-align: center; font-size: 14px; color: #555; margin-top: 8px;">
  Last Updated: <b>{LAST_UPDATED}</b>
</div>

<style>
.btn-glass {
    display: inline-block;
    padding: 12px 25px;
    margin: 8px;
    font-weight: 500;
    text-decoration: none !important; /* 去掉下划线 */
    border-radius: 12px;
    color: white;
    backdrop-filter: blur(6px); /* 虚化效果 */
    background: rgba(255,255,255,0.85); /* 半透明,alpha 调高 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* 默认按钮颜色 */
.btn-paper { background-color: rgba(0, 123, 255, 0.85); }
.btn-github { background-color: rgba(40, 167, 69, 0.85); }
.btn-dataset { background-color: rgba(255, 183, 3, 0.85); }

/* hover 渐变 + 悬浮效果 */
.btn-paper:hover { 
    background: linear-gradient(135deg, rgba(0,123,255,0.95), rgba(0,198,255,0.95));
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}
.btn-github:hover { 
    background: linear-gradient(135deg, rgba(27,94,32,0.95), rgba(40,167,69,0.95));
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}
.btn-dataset:hover { 
    background: linear-gradient(135deg, rgba(255,140,0,0.95), rgba(255,183,3,0.95));
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}
</style>