/**
 * LRYCMS 美化样式
 * @author           袁志蒙  
 * @license          https://lirongyaoper.com
 * @description      首页美化样式，包含轮播图、友情链接、侧边栏等美化效果
 */

/* 全局美化 */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* 轮播图美化 */
.banner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fader .slide img {
    transition: transform 0.3s ease;
}

.fader .slide:hover img {
    transform: scale(1.05);
}

.fader_controls .page {
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.fader_controls .page:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.fader .pager_list li {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fader .pager_list li:hover,
.fader .pager_list li.active {
    border-color: #fff;
    transform: scale(1.2);
}

/* 文章卡片美化 */
.blogs {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blogs:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.blogs .blogtitle a {
    transition: color 0.3s ease;
}

.blogs .blogtitle a:hover {
    color: #3690cf !important;
}

.blogs .blogpic img {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blogs .blogpic:hover img {
    transform: scale(1.05);
}

/* 侧边栏美化 */
.sidebar div {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sidebar div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hometitle {
    position: relative;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hometitle:after {
    background: linear-gradient(90deg, #3690cf, #2ecc71);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.sidebar div:hover .hometitle:after {
    width: 80px;
}

/* 友情链接美化 */
.links {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.links .hometitle {
    color: #2c3e50;
    text-shadow: none;
}

.links .hometitle:after {
    background: linear-gradient(90deg, #3690cf, #2ecc71);
    box-shadow: none;
}

.links ul {
    position: relative;
    z-index: 1;
}

.links ul li {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 25px;
    padding: 8px 16px;
    margin: 8px 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* 兼容性处理 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.links ul li:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.links ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    /* 确保文字清晰可见 */
    position: relative;
    z-index: 2;
}

.links ul li a:hover {
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(255,255,255,0.9);
    text-decoration: none;
}

/* 标签云美化 */
.cloud ul a {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cloud ul a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cloud ul a:hover::before {
    left: 100%;
}

.cloud ul a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* 特别推荐美化 */
.zhuanti li {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.zhuanti li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.zhuanti img {
    border-radius: 12px;
}

.zhuanti span {
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.zhuanti li:hover span {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.1);
}

/* 点击排行美化 */
.tuijian {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.tuijian::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ranking-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.8" fill="white" opacity="0.08"/><circle cx="75" cy="75" r="0.8" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.06"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23ranking-grain)"/></svg>');
    pointer-events: none;
}

.tuijian:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tuijian .hometitle {
    color: #2c3e50;
    text-shadow: none;
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.tuijian .hometitle::before {
    content: '🔥';
    margin-right: 10px;
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tuijian .hometitle:after {
    background: linear-gradient(90deg, #3690cf, #2ecc71);
    box-shadow: none;
    height: 3px;
    border-radius: 2px;
}

.tjpic {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.tjpic:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.tjpic img {
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.tjpic:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.tjpic p {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.tjpic p a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tjpic p a:hover {
    color: #3690cf;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.sidenews {
    position: relative;
    z-index: 2;
}

.sidenews li {
    border-radius: 12px;
    padding: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidenews li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.sidenews li:hover::before {
    left: 100%;
}

.sidenews li:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sidenews i {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.sidenews li:hover i {
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.05);
}

.sidenews img {
    border-radius: 8px;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.sidenews li:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.sidenews li p {
    line-height: 1.5;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.sidenews li a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.sidenews li:hover a {
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(255,255,255,0.9);
}

.sidenews span {
    font-size: 12px;
    color: rgba(44, 62, 80, 0.7);
    margin-top: 8px;
    display: block;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.sidenews li:hover span {
    color: rgba(44, 62, 80, 0.9);
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* 添加排名标识 */
.sidenews li::after {
    content: counter(ranking);
    counter-increment: ranking;
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #3690cf, #2ecc71);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.sidenews {
    counter-reset: ranking;
}

.sidenews li:hover::after {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* 特殊排名样式 */
.sidenews li:nth-child(1)::after {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    font-size: 14px;
    width: 28px;
    height: 28px;
}

.sidenews li:nth-child(2)::after {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #2c3e50;
    font-size: 13px;
    width: 26px;
    height: 26px;
}

.sidenews li:nth-child(3)::after {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: white;
    font-size: 12px;
    width: 24px;
    height: 24px;
}

/* 添加点击量显示 */
.sidenews li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.sidenews li:hover::before {
    left: 100%;
}

/* 添加文章信息标签 */
.sidenews li .article-meta {
    position: absolute;
    bottom: 8px;
    left: 15px;
    background: rgba(54, 144, 207, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.sidenews li:hover .article-meta {
    opacity: 1;
    transform: translateY(0);
}

/* 文章归档美化 */
.guanzhu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.guanzhu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="archive-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="white" opacity="0.08"/><circle cx="80" cy="80" r="0.8" fill="white" opacity="0.08"/><circle cx="40" cy="60" r="0.5" fill="white" opacity="0.06"/><circle cx="60" cy="40" r="0.5" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23archive-grain)"/></svg>');
    pointer-events: none;
}

.guanzhu .hometitle {
    color: #2c3e50;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.guanzhu .hometitle:after {
    background: linear-gradient(90deg, #3690cf, #2ecc71);
    box-shadow: none;
}

.guanzhu ul {
    position: relative;
    z-index: 2;
}

.guanzhu ul li {
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 12px;
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.guanzhu ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.guanzhu ul li:hover::before {
    left: 100%;
}

.guanzhu ul li:hover {
    transform: translateX(8px) translateY(-2px);
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.45);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guanzhu ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    /* 确保文字清晰可见 */
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.guanzhu ul li a::before {
    content: var(--archive-icon, '📅');
    margin-right: 10px;
    font-size: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.guanzhu ul li:hover a {
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(255,255,255,0.9);
    text-decoration: none;
}

.guanzhu ul li:hover a::before {
    opacity: 1;
    transform: scale(1.2);
}

/* 文章归档数量标签 */
.guanzhu ul li a::after {
    content: attr(data-count);
    background: rgba(54, 144, 207, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(54, 144, 207, 0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 20px;
    text-align: center;
}

.guanzhu ul li:hover a::after {
    background: rgba(54, 144, 207, 1);
    border-color: rgba(54, 144, 207, 1);
    transform: scale(1.1);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .links ul li {
        margin: 6px 4px;
        padding: 6px 12px;
    }
    
    .links ul li a {
        font-size: 13px;
    }
    
    .blogs {
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .sidebar div {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .tuijian {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .tuijian .hometitle {
        font-size: 18px;
    }
    
    .tuijian .hometitle::before {
        font-size: 20px;
    }
    
    .sidenews li {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .sidenews li:hover {
        transform: translateX(5px) translateY(-1px);
    }
    
    .sidenews li::after {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .sidenews li:nth-child(1)::after {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .sidenews li:nth-child(2)::after {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blogs, .sidebar div {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
} 

/* 网站大事记侧边栏样式 */
.timeline-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.timeline-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-section .hometitle {
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    font-size: 18px;
    margin-bottom: 15px;
}

.timeline-section .hometitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3690cf, #2ecc71);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: none;
}

.timeline-section:hover .hometitle:after {
    width: 80px;
}

.timeline-content-wrapper {
    margin-top: 20px;
}

.timeline-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.timeline-description a {
    color: #3690cf;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.timeline-description a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

.timeline-stats-inline {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 12px 24px;
    margin: 15px auto 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    gap: 20px;
}

.timeline-stats-inline:hover {
    background: #e9ecef;
    border-color: #3690cf;
    box-shadow: 0 4px 12px rgba(54, 144, 207, 0.15);
    transform: translateY(-2px);
}

.stats-inline-item {
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
    font-weight: 500;
}

.stats-inline-item strong {
    color: #3690cf;
    font-weight: 700;
    font-size: 18px;
    margin-right: 4px;
}

.timeline-stats-inline:hover .stats-inline-item {
    color: #2c3e50;
}

.timeline-stats-inline:hover .stats-inline-item strong {
    color: #2ecc71;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .timeline-stats-inline {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 20px;
        width: auto;
        margin: 15px auto 0;
    }
    
    .stats-inline-item {
        font-size: 13px;
    }
    
    .stats-inline-item strong {
        font-size: 16px;
    }
}

/* 申请友链按钮样式 */
.apply-link-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.apply-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3690cf, #2ecc71);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(54, 144, 207, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.apply-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.apply-link-btn:hover::before {
    left: 100%;
}

.apply-link-btn:hover {
    background: linear-gradient(135deg, #2ecc71, #3690cf);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 144, 207, 0.4);
}

.apply-link-btn:active {
    transform: translateY(0);
}

.apply-link-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.apply-link-btn:hover i {
    transform: rotate(15deg);
}

.apply-link-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 响应式设计 - 申请友链按钮 */
@media (max-width: 768px) {
    .apply-link-section {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .apply-link-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
    }
    
    .apply-link-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .apply-link-btn {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .apply-link-btn i {
        font-size: 12px;
    }
}