/* Concat Sidebar 组件 - 赛博朋克风格 - 特定样式 */

/* 联系列表特定样式 */
.concat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concat-item {
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
    transition: var(--transition);
}

.concat-item:last-child {
    border-bottom: none;
}

.concat-item:hover {
    background: rgba(0, 255, 136, 0.02);
    transform: translateX(4px);
}

.concat-item a {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.concat-item a:hover::before {
    left: 100%;
}

.concat-item a:hover {
    color: var(--text-white);
}

/* 图标包装器特定样式 */
.concat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.concat-icon-wrapper svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

/* Telegram 图标 */
.concat-icon-wrapper.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.concat-icon-wrapper.telegram:hover {
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.5);
    transform: scale(1.05);
}

.concat-item a:hover .concat-icon-wrapper.telegram svg {
    transform: scale(1.1) rotateY(10deg);
}

/* Email 图标 */
.concat-icon-wrapper.email {
    background: linear-gradient(135deg, #ea4335 0%, #d93025 100%);
    box-shadow: 0 0 15px rgba(234, 67, 53, 0.3);
}

.concat-icon-wrapper.email:hover {
    box-shadow: 0 0 25px rgba(234, 67, 53, 0.5);
    transform: scale(1.05);
}

.concat-item a:hover .concat-icon-wrapper.email svg {
    transform: scale(1.1) rotateY(10deg);
}

/* QQ 图标 */
.concat-icon-wrapper.qq {
    background: linear-gradient(135deg, #12b7f5 0%, #00a3ff 100%);
    box-shadow: 0 0 15px rgba(18, 183, 245, 0.3);
}

.concat-icon-wrapper.qq:hover {
    box-shadow: 0 0 25px rgba(18, 183, 245, 0.5);
    transform: scale(1.05);
}

.concat-item a:hover .concat-icon-wrapper.qq svg {
    transform: scale(1.1) rotateY(10deg);
}

/* 信息区域特定样式 */
.concat-info {
    flex: 1;
    min-width: 0;
}

.concat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.concat-value {
    font-size: 0.95rem;
    color: var(--text-gray);
    opacity: 0.8;
    transition: var(--transition);
}

.concat-item a:hover .concat-value {
    opacity: 1;
    color: var(--primary);
}

/* 箭头图标特定样式 */
.concat-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-gray);
    opacity: 0.5;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.concat-item a:hover .concat-arrow {
    opacity: 1;
    color: var(--primary);
    transform: translateX(4px);
}