/* X (Twitter) Icon Styles */

.x-icon-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.x-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.x-icon:hover {
    background-color: rgba(3, 252, 247, 0.2);
    border-color: #03FCF7;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(3, 252, 247, 0.3);
    color: #03FCF7;
}

.x-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.x-icon:hover svg {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .x-icon-container {
        margin-top: 10px;
    }
    
    .x-icon {
        width: 36px;
        height: 36px;
    }
    
    .x-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .x-icon {
        width: 32px;
        height: 32px;
    }
    
    .x-icon svg {
        width: 16px;
        height: 16px;
    }
}
