/* =========================================
   社交媒体链接 (Social Links Component)
   ========================================= */

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.social-links__divider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(62, 39, 35, 0.1);
}

.social-links__text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: rgba(93, 64, 55, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background-color: #f2efe9;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.social-links__icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-links__icons { gap: 1.5rem; }
}

.social-links__btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(62, 39, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5d4037;
    background-color: #faf9f6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-links__btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links__btn:hover i {
    transform: scale(1.1);
}

.social-links__xiaohongshu-text {
    font-weight: bold;
    font-size: 11px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.social-links__btn--youtube:hover {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.social-links__btn--wechat:hover {
    background-color: #07c160;
    color: #ffffff;
    border-color: #07c160;
}

.social-links__btn--bilibili:hover {
    background-color: #00a1d6;
    color: #ffffff;
    border-color: #00a1d6;
}

.social-links__btn--xiaohongshu:hover {
    background-color: #ff2442;
    color: #ffffff;
    border-color: #ff2442;
}

.social-links__btn--xiaohongshu:hover .social-links__xiaohongshu-text {
    transform: scale(1.1);
}
